update for HEAD-2003021201
[reactos.git] / lib / msvcrt / time / tz_vars.c
diff --git a/lib/msvcrt/time/tz_vars.c b/lib/msvcrt/time/tz_vars.c
new file mode 100644 (file)
index 0000000..aad68dc
--- /dev/null
@@ -0,0 +1,21 @@
+#include <msvcrt/string.h>
+#include <msvcrt/ctype.h>
+#include <msvcrt/stdlib.h>
+
+
+int _daylight;
+int _timezone;
+
+
+void _set_daylight_export(int value)
+{
+    _daylight =  value;
+}
+
+void _set_timezone_export(int value)
+{
+    _timezone =  value;
+}
+
+
+