diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2002-06-17 09:45:15 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2002-06-17 09:45:15 +0000 |
commit | d6b2a407783dbbd6c9680601da005de0bb0ff37d (patch) | |
tree | d72244507fab5c5c59d12aa10fa411943631c56c /libc/misc/time/asctime_r.c | |
parent | a7ce5bbdcd1217af1aab4c15e4ce337c8ef33973 (diff) |
Commit the new time stuff, even though I haven't made it threadsafe yet.
At least people can play with it. Also, fix a buglet in setenv.c.
Diffstat (limited to 'libc/misc/time/asctime_r.c')
-rw-r--r-- | libc/misc/time/asctime_r.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libc/misc/time/asctime_r.c b/libc/misc/time/asctime_r.c deleted file mode 100644 index 215031949..000000000 --- a/libc/misc/time/asctime_r.c +++ /dev/null @@ -1,16 +0,0 @@ - -#include <time.h> -#include <errno.h> - -extern void __asctime(); - -char *asctime_r(__const struct tm *timeptr, char *buf) -{ - if (timeptr == NULL || buf == NULL) { - __set_errno (EINVAL); - return NULL; - } - __asctime(buf, timeptr); - return buf; -} - |