From a784e502472fb3a1afa4d01a47c66b52d23e00f6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 7 Jan 2012 23:57:22 -0500 Subject: Remove pre-ISO C support No more __const. --- include/time.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/time.h') diff --git a/include/time.h b/include/time.h index e896406..0bda094 100644 --- a/include/time.h +++ b/include/time.h @@ -57,10 +57,10 @@ extern time_t __mktime_internal (struct tm *__tp, struct tm *(*__func) (const time_t *, struct tm *), time_t *__offset); -extern struct tm *__localtime_r (__const time_t *__timer, +extern struct tm *__localtime_r (const time_t *__timer, struct tm *__tp) attribute_hidden; -extern struct tm *__gmtime_r (__const time_t *__restrict __timer, +extern struct tm *__gmtime_r (const time_t *__restrict __timer, struct tm *__restrict __tp); libc_hidden_proto (__gmtime_r) @@ -68,11 +68,11 @@ libc_hidden_proto (__gmtime_r) offset OFFSET seconds east of UTC, and store year, yday, mon, mday, wday, hour, min, sec into *TP. Return nonzero if successful. */ -extern int __offtime (__const time_t *__timer, +extern int __offtime (const time_t *__timer, long int __offset, struct tm *__tp); -extern char *__asctime_r (__const struct tm *__tp, char *__buf); +extern char *__asctime_r (const struct tm *__tp, char *__buf); extern void __tzset (void); /* Prototype for the internal function to get information based on TZ. */ @@ -82,13 +82,13 @@ extern struct tm *__tz_convert (const time_t *timer, int use_localtime, struct t This is what `sysconf (_SC_TZNAME_MAX)' does. */ extern long int __tzname_max (void); -extern int __nanosleep (__const struct timespec *__requested_time, +extern int __nanosleep (const struct timespec *__requested_time, struct timespec *__remaining); libc_hidden_proto (__nanosleep) -extern int __nanosleep_nocancel (__const struct timespec *__requested_time, +extern int __nanosleep_nocancel (const struct timespec *__requested_time, struct timespec *__remaining) attribute_hidden; -extern int __getdate_r (__const char *__string, struct tm *__resbufp); +extern int __getdate_r (const char *__string, struct tm *__resbufp); /* Determine CLK_TCK value. */ -- cgit v1.1