summaryrefslogtreecommitdiff
path: root/libc/misc/time/ctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/time/ctime.c')
-rw-r--r--libc/misc/time/ctime.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libc/misc/time/ctime.c b/libc/misc/time/ctime.c
deleted file mode 100644
index 027f5d5a7..000000000
--- a/libc/misc/time/ctime.c
+++ /dev/null
@@ -1,14 +0,0 @@
-
-#include <time.h>
-#include <sys/time.h>
-
-char * ctime (const time_t *t)
-{
-
- /* According to IEEE Std 1003.1-2001: The ctime() function shall
- * convert the time pointed to by clock, representing time in
- * seconds since the Epoch, to local time in the form of a string.
- * It shall be equivalent to: asctime(localtime(clock)) */
- return asctime (localtime (t));
-}
-