diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 00:06:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 00:06:24 +0000 |
commit | 8cac677ca7d2d4d726aae797da45d06eee626ad7 (patch) | |
tree | 921d87fdb55fead0b7b6043c8926513a91615486 /time | |
parent | 49e9f864906640e913ad69f98ce6ee24776d5b8d (diff) |
Update.
2002-12-30 Jakub Jelinek <jakub@redhat.com>
* forward.c: Make all functions available by default again. It
caused too much trouble.
* internals.h (struct pthread_functions): Rename ptr_pthread_exit
and ptr_pthread_attr_init_2_* to ptr___pthread_exit and
ptr___pthread_attr_init_2_*.
* pthread.c (pthread_functions): Adjust.
Diffstat (limited to 'time')
-rw-r--r-- | time/time.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/time/time.h b/time/time.h index fa1c284fa5..febd0cb2a8 100644 --- a/time/time.h +++ b/time/time.h @@ -107,8 +107,10 @@ typedef __timer_t timer_t; #undef __need_timer_t -#if !defined __timespec_defined && \ - ((defined _TIME_H && defined __USE_POSIX199309) || defined __need_timespec) +#if !defined __timespec_defined && \ + ((defined _TIME_H && \ + (defined __USE_POSIX199309 || defined __USE_MISC)) || \ + defined __need_timespec) # define __timespec_defined 1 /* POSIX.1b structure for a time value. This is like a `struct timeval' but |