diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/timebits.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/timebits.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/timebits.h b/sysdeps/unix/sysv/linux/timebits.h index c31f481a60..52f666faf5 100644 --- a/sysdeps/unix/sysv/linux/timebits.h +++ b/sysdeps/unix/sysv/linux/timebits.h @@ -35,9 +35,12 @@ struct timeval #ifndef _TIMEBITS_H # define _TIMEBITS_H 1 -# ifdef __USE_MISC -# include <asm/param.h> -# define CLOCKS_PER_SEC HZ /* XXX names not kosher */ -# endif +/* ISO/IEC 9899:1990 7.12.1: <time.h> + The macro `CLOCKS_PER_SEC' is the number per second of the value + returned by the `clock' function. */ +/* CAE XSH, Issue 4, Version 2: <time.h> + The value of CLOCKS_PER_SEC is required to be 1 million on all + XSI-conformant systems. */ +# define CLOCKS_PER_SEC 1000000 #endif /* timebits.h */ |