update for HEAD-2003021201
[reactos.git] / lib / crtdll / time / tz_vars.c
1 #include <msvcrt/string.h>
2 #include <msvcrt/ctype.h>
3 #include <msvcrt/stdlib.h>
4
5
6 int _daylight_dll;
7 int _timezone_dll;
8
9
10 void _set_daylight_export(int value)
11 {
12     _daylight_dll =  value;
13 }
14
15 void _set_timezone_export(int value)
16 {
17     _timezone_dll =  value;
18 }
19
20
21