Commit cf9395af authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Only declare DateStyle in a single compilation unit.

parent ecbf1d92
......@@ -66,6 +66,12 @@ char *months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
char *days[] = {"Sunday", "Monday", "Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday", NULL};
/* those three vars are useless, and not even initialized, so
* I'd rather remove them all (EPP)
*/
int DateStyle;
bool EuroDates;
int CTimeZone;
#define UTIME_MINYEAR (1901)
#define UTIME_MINMONTH (12)
......
......@@ -145,9 +145,9 @@ typedef uint32 bool32; /* >= 32 bits */
#define USE_SQL_DATES 2
#define USE_GERMAN_DATES 3
int DateStyle;
bool EuroDates;
int CTimeZone;
extern int DateStyle;
extern bool EuroDates;
extern int CTimeZone;
typedef double float8;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment