X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Ftime.h;h=ddfad58f7dc3cac609b06137279d35c815bbc81f;hb=d71d0805f9ad4010529bb94092a2e378b4edac9a;hp=4cec647d9041919adc3c27c5eb88e6ab7fdadda9;hpb=4e30249643271212ba76bb62e3f7eacc99f62f8c;p=musl diff --git a/include/time.h b/include/time.h index 4cec647d..ddfad58f 100644 --- a/include/time.h +++ b/include/time.h @@ -23,6 +23,7 @@ extern "C" { #define __NEED_clockid_t #define __NEED_timer_t #define __NEED_pid_t +#define __NEED_locale_t #endif #include @@ -58,6 +59,8 @@ char *ctime (const time_t *); #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ || defined(_XOPEN_SOURCE) || defined(_GNU_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 *); char *asctime_r (const struct tm *, char *); @@ -85,7 +88,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); @@ -102,7 +104,7 @@ extern int daylight; extern long timezone; extern char *tzname[2]; extern int getdate_err; -extern struct tm *getdate (const char *); +struct tm *getdate (const char *); #endif