diff options
author | Erik Gilling <konkers@android.com> | 2009-09-09 14:58:19 -0700 |
---|---|---|
committer | Erik Gilling <konkers@android.com> | 2009-09-09 14:58:19 -0700 |
commit | 9e74f697e0178a0e9b6133a2b270cc7fed9920bf (patch) | |
tree | 39baca0c5a52427d3d17a3258fc16ee9d7d7a295 | |
parent | b4423ff7dfd8c97688cbf87ba8ce22f5b54fa89c (diff) | |
download | bionic-9e74f697e0178a0e9b6133a2b270cc7fed9920bf.zip bionic-9e74f697e0178a0e9b6133a2b270cc7fed9920bf.tar.gz bionic-9e74f697e0178a0e9b6133a2b270cc7fed9920bf.tar.bz2 |
libc: add void to clock() function prototype
Signed-off-by: Erik Gilling <konkers@android.com>
-rw-r--r-- | libc/include/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/time.h b/libc/include/time.h index 14066a1..5d1a0e2 100644 --- a/libc/include/time.h +++ b/libc/include/time.h @@ -109,7 +109,7 @@ extern long int timezone; #define CLOCKS_PER_SEC 1000000 -extern clock_t clock(); +extern clock_t clock(void); /* BIONIC: extra linux clock goodies */ extern int clock_getres(int, struct timespec *); |