diff options
Diffstat (limited to 'libc/misc/time/ctime_r.c')
-rw-r--r-- | libc/misc/time/ctime_r.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libc/misc/time/ctime_r.c b/libc/misc/time/ctime_r.c deleted file mode 100644 index 1b323a258..000000000 --- a/libc/misc/time/ctime_r.c +++ /dev/null @@ -1,10 +0,0 @@ - -#include <time.h> -#include <sys/time.h> - -char * ctime_r(const time_t *t, char *buf) -{ - struct tm tm; - return asctime_r(localtime_r(t, &tm), buf); -} - |