From 4b15d9f46a2b260661d2e054575e617c76795578 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 25 Oct 2013 14:15:08 -0400 Subject: 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. --- include/sys/timeb.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/sys/timeb.h (limited to 'include') diff --git a/include/sys/timeb.h b/include/sys/timeb.h new file mode 100644 index 00000000..108c1f5c --- /dev/null +++ b/include/sys/timeb.h @@ -0,0 +1,22 @@ +#ifndef _SYS_TIMEB_H +#define _SYS_TIMEB_H +#ifdef __cplusplus +extern "C" { +#endif + +#define __NEED_time_t + +#include + +struct timeb { + time_t time; + unsigned short millitm; + short timezone, dstflag; +}; + +int ftime(struct timeb *); + +#ifdef __cplusplus +} +#endif +#endif -- cgit v1.2.1