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/time/tzvars.c')
-rw-r--r--newlib/libc/time/tzvars.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/libc/time/tzvars.c b/newlib/libc/time/tzvars.c
new file mode 100644
index 000000000..d1f17649b
--- /dev/null
+++ b/newlib/libc/time/tzvars.c
@@ -0,0 +1,10 @@
+#include <time.h>
+
+/* Global timezone variables. */
+
+/* Default timezone to GMT */
+char *_tzname[2] = {"GMT", "GMT"};
+int _daylight = 0;
+long _timezone = 0;
+
+