diff options
Diffstat (limited to 'sysdeps/generic/get_clockfreq.c')
-rw-r--r-- | sysdeps/generic/get_clockfreq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/get_clockfreq.c b/sysdeps/generic/get_clockfreq.c index 94f233c..89af7fc 100644 --- a/sysdeps/generic/get_clockfreq.c +++ b/sysdeps/generic/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,10 +19,10 @@ #include <libc-internal.h> -unsigned long long int +hp_timing_t __get_clockfreq (void) { /* There is no generic way to find this out since we have in general no counter register either. */ - return 0ull; + return 0; } |