diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/setitimer.c | 6 | ||||
-rw-r--r-- | time/strftime_l.c | 7 |
2 files changed, 4 insertions, 9 deletions
diff --git a/time/setitimer.c b/time/setitimer.c index 6b49a603b1..db5fd6bca7 100644 --- a/time/setitimer.c +++ b/time/setitimer.c @@ -23,10 +23,8 @@ set *OLD to the old value of timer WHICH. Returns 0 on success, -1 on errors. */ int -__setitimer (which, new, old) - enum __itimer_which which; - const struct itimerval *new; - struct itimerval *old; +__setitimer (enum __itimer_which which, const struct itimerval *new, + struct itimerval *old) { if (new == NULL) { diff --git a/time/strftime_l.c b/time/strftime_l.c index 26829cf7bd..dc33a405eb 100644 --- a/time/strftime_l.c +++ b/time/strftime_l.c @@ -1438,11 +1438,8 @@ __strftime_internal (s, maxsize, format, tp, tzset_called ut_argument strftime function and does not have the extra information whether the TP arguments comes from a `gmtime' call or not. */ size_t -emacs_strftime (s, maxsize, format, tp) - char *s; - size_t maxsize; - const char *format; - const struct tm *tp; +emacs_strftime (char *s, size_t maxsize, const char *format, + const struct tm *tp) { return my_strftime (s, maxsize, format, tp, 0); } |