| 134 | } |
| 135 | |
| 136 | inline attribute_hidden struct tm * gmtime_(const time_t * const x){ |
| 137 | typedef struct tm* (*Fun)(const time_t* const); |
| 138 | static Fun fun = GET_CALLABLE("gmtime_"); |
| 139 | return fun(x); |
| 140 | } |
| 141 | |
| 142 | inline attribute_hidden void Rcpp_precious_init() { |
| 143 | typedef void (*Fun)(void); |
no outgoing calls