summaryrefslogtreecommitdiff
path: root/src/time
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-10-25 14:15:08 -0400
committerRich Felker <dalias@aerifal.cx>2013-10-25 14:15:08 -0400
commit4b15d9f46a2b260661d2e054575e617c76795578 (patch)
treeb5ed03ad58216b42cfd0675f183aee72074c348b /src/time
parent78f889153167452de4cbced921f6428b3d4f663a (diff)
downloadmusl-4b15d9f46a2b260661d2e054575e617c76795578.tar.gz
add legacy ftime function and sys/timeb.h
despite being marked legacy, this was specified by SUSv3 as part of the XSI option; only the most recent version of the standard dropped it. reportedly there's actual code using it.
Diffstat (limited to 'src/time')
-rw-r--r--src/time/ftime.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/time/ftime.c b/src/time/ftime.c
new file mode 100644
index 00000000..a1734d0f
--- /dev/null
+++ b/src/time/ftime.c
@@ -0,0 +1,12 @@
+#include <sys/timeb.h>
+#include <time.h>
+
+int ftime(struct timeb *tp)
+{
+ struct timespec ts;
+ clock_gettime(CLOCK_REALTIME, &ts);
+ tp->time = ts.tv_sec;
+ tp->millitm = ts.tv_nsec / 1000000;
+ tp->timezone = tp->dstflag = 0;
+ return 0;
+}