move nonstandard gamma() etc. to _GNU_SOURCE only
[musl] / include / time.h
index a9e1d8f..ddfad58 100644 (file)
@@ -13,6 +13,7 @@ extern "C" {
 #endif
 
 
+#define __NEED_size_t
 #define __NEED_time_t
 #define __NEED_clock_t
 
@@ -21,8 +22,8 @@ extern "C" {
 #define __NEED_struct_timespec
 #define __NEED_clockid_t
 #define __NEED_timer_t
-#define __NEED_size_t
 #define __NEED_pid_t
+#define __NEED_locale_t
 #endif
 
 #include <bits/alltypes.h>
@@ -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