X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Ftime.h;h=067b5196812190f1b13b23b76218734f6961bf53;hp=5b1ea91fed3d6d21283937e7a17dcd0eda2d2309;hb=419ae6d5c95629d3ebaff6f1880d52cb027ba924;hpb=13cd969552409e05c941829f2aabb15e2f4d9a1f diff --git a/include/time.h b/include/time.h index 5b1ea91f..067b5196 100644 --- a/include/time.h +++ b/include/time.h @@ -18,11 +18,13 @@ extern "C" { #define __NEED_clock_t #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) + || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \ + || defined(_BSD_SOURCE) #define __NEED_struct_timespec #define __NEED_clockid_t #define __NEED_timer_t #define __NEED_pid_t +#define __NEED_locale_t #endif #include @@ -56,7 +58,10 @@ char *ctime (const time_t *); #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) + || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \ + || defined(_BSD_SOURCE) + +size_t strftime_l (char *, size_t, const char *, const struct tm *, locale_t); struct tm *gmtime_r (const time_t *, struct tm *); struct tm *localtime_r (const time_t *, struct tm *); @@ -85,7 +90,6 @@ int clock_settime (clockid_t, const struct timespec *); int clock_nanosleep (clockid_t, int, const struct timespec *, struct timespec *); int clock_getcpuclockid (pid_t, clockid_t *); -/* FIXME..?? */ struct sigevent; int timer_create (clockid_t, struct sigevent *, timer_t *); int timer_delete (timer_t); @@ -106,6 +110,11 @@ struct tm *getdate (const char *); #endif +#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) +int stime(time_t *); +#endif + + #ifdef __cplusplus } #endif