Lines 207-215
time_t posix2time(time_t t);
Link Here
|
207 |
#include <xlocale/_time.h> |
207 |
#include <xlocale/_time.h> |
208 |
#endif |
208 |
#endif |
209 |
|
209 |
|
|
|
210 |
#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) |
211 |
#include <sys/_timespec.h> |
210 |
/* ISO/IEC 9899:201x 7.27.2.5 The timespec_get function */ |
212 |
/* ISO/IEC 9899:201x 7.27.2.5 The timespec_get function */ |
211 |
#define TIME_UTC 1 /* time elapsed since epoch */ |
213 |
#define TIME_UTC 1 /* time elapsed since epoch */ |
212 |
int timespec_get(struct timespec *ts, int base); |
214 |
int timespec_get(struct timespec *ts, int base); |
|
|
215 |
#endif |
213 |
|
216 |
|
214 |
__END_DECLS |
217 |
__END_DECLS |
215 |
|
218 |
|