diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/sys/time.h | 8 | ||||
-rw-r--r-- | time/time.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/time/sys/time.h b/time/sys/time.h index c01b23bc66..60cf2d2289 100644 --- a/time/sys/time.h +++ b/time/sys/time.h @@ -49,7 +49,7 @@ __BEGIN_DECLS #endif -#ifdef __USE_BSD +#ifdef __USE_MISC /* Structure crudely representing a timezone. This is obsolete and should never be used. */ struct timezone @@ -71,7 +71,7 @@ typedef void *__restrict __timezone_ptr_t; extern int gettimeofday (struct timeval *__restrict __tv, __timezone_ptr_t __tz) __THROW __nonnull ((1)); -#ifdef __USE_BSD +#ifdef __USE_MISC /* Set the current time of day and timezone information. This call is restricted to the super-user. */ extern int settimeofday (const struct timeval *__tv, @@ -138,7 +138,7 @@ extern int setitimer (__itimer_which_t __which, extern int utimes (const char *__file, const struct timeval __tvp[2]) __THROW __nonnull ((1)); -#ifdef __USE_BSD +#ifdef __USE_MISC /* Same as `utimes', but does not follow symbolic links. */ extern int lutimes (const char *__file, const struct timeval __tvp[2]) __THROW __nonnull ((1)); @@ -156,7 +156,7 @@ extern int futimesat (int __fd, const char *__file, #endif -#ifdef __USE_BSD +#ifdef __USE_MISC /* Convenience macros for operations on timevals. NOTE: `timercmp' does not work for >= or <=. */ # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) diff --git a/time/time.h b/time/time.h index 9777dd9684..99b84749a8 100644 --- a/time/time.h +++ b/time/time.h @@ -74,7 +74,7 @@ __BEGIN_NAMESPACE_STD /* Returned by `time'. */ typedef __time_t time_t; __END_NAMESPACE_STD -#if defined __USE_POSIX || defined __USE_MISC || defined __USE_SVID +#if defined __USE_POSIX || defined __USE_MISC || defined __USE_MISC __USING_NAMESPACE_STD(time_t) #endif @@ -142,7 +142,7 @@ struct tm int tm_yday; /* Days in year.[0-365] */ int tm_isdst; /* DST. [-1/0/1]*/ -# ifdef __USE_BSD +# ifdef __USE_MISC long int tm_gmtoff; /* Seconds east of UTC. */ const char *tm_zone; /* Timezone abbreviation. */ # else @@ -293,12 +293,12 @@ extern char *tzname[2]; extern void tzset (void) __THROW; # endif -# if defined __USE_SVID || defined __USE_XOPEN +# if defined __USE_MISC || defined __USE_XOPEN extern int daylight; extern long int timezone; # endif -# ifdef __USE_SVID +# ifdef __USE_MISC /* Set the system time to *WHEN. This call is restricted to the superuser. */ extern int stime (const time_t *__when) __THROW; |