diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-05-11 05:40:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-05-11 05:40:55 +0000 |
commit | fd15708e6476164990e7b364dc5b2aa1600f8e89 (patch) | |
tree | 7627bd8a8c546f2fafd99fb52c1f96fdf4b242ce /libc/misc/time/difftime.c | |
parent | a4f07581502ee212aa45e7b0049fdd126dd10b40 (diff) |
Begin the process of reworking the time functions for proper
time zone and locale support (in theory). More work is
still needed.
-Erik
Diffstat (limited to 'libc/misc/time/difftime.c')
-rw-r--r-- | libc/misc/time/difftime.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/misc/time/difftime.c b/libc/misc/time/difftime.c index 6a9b708ea..88a9244ba 100644 --- a/libc/misc/time/difftime.c +++ b/libc/misc/time/difftime.c @@ -22,10 +22,7 @@ /* Return the difference between TIME1 and TIME0. */ -double -difftime (time1, time0) - time_t time1; - time_t time0; +double difftime (time_t time1, time_t time0) { /* Algorithm courtesy Paul Eggert (eggert@twinsun.com). */ |