| 128 | |
| 129 | |
| 130 | inline attribute_hidden double mktime00(struct tm &tm){ |
| 131 | typedef double (*Fun)(struct tm&); |
| 132 | static Fun fun = GET_CALLABLE("mktime00"); |
| 133 | return fun(tm); |
| 134 | } |
| 135 | |
| 136 | inline attribute_hidden struct tm * gmtime_(const time_t * const x){ |
| 137 | typedef struct tm* (*Fun)(const time_t* const); |
no outgoing calls