This function is obsolescent and may disappear in future releases. Callers can instead use mktime_z with a fixed-offset zone. */
| 2978 | /* This function is obsolescent and may disappear in future releases. |
| 2979 | Callers can instead use mktime_z with a fixed-offset zone. */ |
| 2980 | EXTERN_TIMEOFF time_t |
| 2981 | timeoff(struct tm *tmp, long offset) |
| 2982 | { |
| 2983 | if (tmp) |
| 2984 | tmp->tm_isdst = 0; |
| 2985 | gmtcheck(); |
| 2986 | return time1(tmp, gmtsub, gmtptr, offset); |
| 2987 | } |
| 2988 | #endif |
| 2989 | |
| 2990 | #if !USE_TIMEX_T |