diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-11-22 05:10:33 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-11-22 05:10:33 +0000 |
commit | c93515f29d88423ea654ebf1cc7f90633173544a (patch) | |
tree | 5ece8e95375cf7088ce6633c23421ceaaab9b039 /ace/Time_Value.h | |
parent | 5a545cfd19986bea5f835d9f0807b2d4128dba4e (diff) | |
download | ATCD-c93515f29d88423ea654ebf1cc7f90633173544a.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Time_Value.h')
-rw-r--r-- | ace/Time_Value.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Time_Value.h b/ace/Time_Value.h index e4cdb1223ae..ec2d5aebabf 100644 --- a/ace/Time_Value.h +++ b/ace/Time_Value.h @@ -75,7 +75,7 @@ // Just to be safe we'll do it with pthreads, too -- jwr #if defined (ACE_HAS_DCETHREADS) || defined (ACE_HAS_PTHREADS) extern "C" { -#include <pthread.h> +#include /**/ <pthread.h> #if defined (DIGITAL_UNIX) #define pthread_self __pthread_self extern "C" pthread_t pthread_self (void); @@ -89,14 +89,14 @@ extern "C" pthread_t pthread_self (void); #define ACE_TRACE(X) ACE_Trace ____ (X, __LINE__, __FILE__) #endif /* ACE_NTRACE */ -#include <time.h> +#include /**/ <time.h> #if defined (ACE_NEEDS_SYSTIME_H) // Some platforms may need to include this, but I suspect that most // will get it from <time.h> #if defined (VXWORKS) -#include <sys/times.h> +#include /**/ <sys/times.h> #else -#include <sys/time.h> +#include /**/ <sys/time.h> #endif /* VXWORKS */ #endif /* ACE_NEEDS_SYSTIME_H */ @@ -109,7 +109,7 @@ typedef struct timespec } timespec_t; #elif defined (ACE_HAS_BROKEN_POSIX_TIME) // OSF/1 defines struct timespec in <sys/timers.h> - Tom Marrs -#include <sys/timers.h> +#include /**/ <sys/timers.h> #endif /* ACE_HAS_POSIX_TIME */ // #if (!defined (timespec) && !defined (m88k)) |