diff options
Diffstat (limited to 'time/settimeofday.c')
-rw-r--r-- | time/settimeofday.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/time/settimeofday.c b/time/settimeofday.c index 513e194af2..d6a632a394 100644 --- a/time/settimeofday.c +++ b/time/settimeofday.c @@ -21,9 +21,7 @@ /* Set the current time of day and timezone information. This call is restricted to the super-user. */ int -__settimeofday (tv, tz) - const struct timeval *tv; - const struct timezone *tz; +__settimeofday (const struct timeval *tv, const struct timezone *tz) { __set_errno (ENOSYS); return -1; |