From 7a270350a9bc3110cd5ba12bbd8c5c8c365e0032 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 25 Feb 2012 21:28:27 -0500 Subject: Fix ISO C11 definitions in time.h --- time/time.h | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'time') diff --git a/time/time.h b/time/time.h index 7a1e5338d4..775c0927e7 100644 --- a/time/time.h +++ b/time/time.h @@ -179,10 +179,7 @@ typedef __pid_t pid_t; # ifdef __USE_ISOC11 /* Time base values for timespec_get. */ -enum - { - TIME_UTC = 1 - }; +# define TIME_UTC 1 # endif @@ -362,13 +359,6 @@ extern int clock_getcpuclockid (pid_t __pid, clockid_t *__clock_id) __THROW; # endif -# ifdef __USE_ISOC11 -/* Set TS to calendar time based in time base BASE. */ -extern int timespec_get (struct timespec *__ts, int __base) - __THROW __nonnull ((1)); -# endif - - /* Create new per-process timer using CLOCK_ID. */ extern int timer_create (clockid_t __clock_id, struct sigevent *__restrict __evp, @@ -391,6 +381,13 @@ extern int timer_getoverrun (timer_t __timerid) __THROW; # endif +# ifdef __USE_ISOC11 +/* Set TS to calendar time based in time base BASE. */ +extern int timespec_get (struct timespec *__ts, int __base) + __THROW __nonnull ((1)); +# endif + + # ifdef __USE_XOPEN_EXTENDED /* Set to one of the following values to indicate an error. 1 the DATEMSK environment variable is null or undefined, -- cgit 1.4.1