diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-09 06:36:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-09 06:36:44 +0000 |
commit | 69b2edf81ec8955b59fba03b2a553bd8b5995b58 (patch) | |
tree | 0bae91771dd13c27aa706f97ded7f9fb71caa4b1 /libc | |
parent | d62d23b5e87a924caaed9d8189da5f50226c79cc (diff) |
Remove times and all the foolishness surrounding it. There is
a syscall that does this, so use that.
-Erik
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/time/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/time/Makefile b/libc/misc/time/Makefile index 4b9e98db9..757a77a81 100644 --- a/libc/misc/time/Makefile +++ b/libc/misc/time/Makefile @@ -26,7 +26,7 @@ LIBC=$(TOPDIR)libc.a CSRC=localtime.c gmtime.c asctime.c ctime.c asc_conv.c tm_conv.c mktime.c \ localtime_r.c gmtime_r.c asctime_r.c ctime_r.c utimes.c adjtime.c \ - clock.c times.c difftime.c strftime.c + clock.c difftime.c strftime.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |