Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/getdate_err.c')
-rw-r--r--newlib/libc/sys/linux/getdate_err.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/getdate_err.c b/newlib/libc/sys/linux/getdate_err.c
new file mode 100644
index 000000000..e90b74b83
--- /dev/null
+++ b/newlib/libc/sys/linux/getdate_err.c
@@ -0,0 +1,18 @@
+/* The getdate_err variable is stored in the reentrancy structure. This
+ function returns its address for use by the getdate_err macro defined in
+ time.h. */
+
+#include <errno.h>
+#include <reent.h>
+
+#ifndef _REENT_ONLY
+
+int *
+__getdate_err ()
+{
+ struct _reent *ptr = _REENT;
+ _REENT_CHECK_MISC(ptr);
+ return _REENT_GETDATE_ERR_P(ptr);
+}
+
+#endif