From 8998ff49da5aa3f578c902b0a008c930b2ca6dfb Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 3 Sep 2002 00:06:58 +0000 Subject: Now that _BSD_CLK_TCK_ and _BSD_CLOCKS_PER_SEC_ are the same on all architectures, move the definition directly into and finish the removal of . --- include/time.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/time.h') diff --git a/include/time.h b/include/time.h index c317a98..90accb8 100644 --- a/include/time.h +++ b/include/time.h @@ -48,18 +48,16 @@ #include #include -#include - #if __POSIX_VISIBLE > 0 && __POSIX_VISIBLE < 200112 || __BSD_VISIBLE /* * Frequency of the clock ticks reported by times(). Deprecated - use * sysconf(_SC_CLK_TCK) instead. (Removed in 1003.1-2001.) */ -#define CLK_TCK _BSD_CLK_TCK_ +#define CLK_TCK 128 #endif /* Frequency of the clock ticks reported by clock(). */ -#define CLOCKS_PER_SEC _BSD_CLOCKS_PER_SEC_ +#define CLOCKS_PER_SEC 128 #ifndef NULL #define NULL 0 -- cgit v1.1