diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/clock.c | 2 | ||||
-rw-r--r-- | time/tzset.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/time/clock.c b/time/clock.c index d7a1f14..acd624f 100644 --- a/time/clock.c +++ b/time/clock.c @@ -21,7 +21,7 @@ /* Return the time used by the program so far (user time + system time). */ clock_t -clock () +clock (void) { __set_errno (ENOSYS); return (clock_t) -1; diff --git a/time/tzset.c b/time/tzset.c index 0064cb0..4f8af8d 100644 --- a/time/tzset.c +++ b/time/tzset.c @@ -125,7 +125,7 @@ __tzstring (const char *s) size_t __tzname_cur_max; long int -__tzname_max () +__tzname_max (void) { __libc_lock_lock (tzset_lock); |