Merge from amd64-branch:
[reactos.git] / reactos / base / applications / network / ftp / fake.h
index b29212b..a220098 100644 (file)
@@ -6,7 +6,15 @@
 
 #define getwd getcwd
 
-#define strcasecmp strcmp
-#define strncasecmp strnicmp
+#define strcasecmp _stricmp
+#define strncasecmp _strnicmp
 
-void __cdecl _tzset(void);
+#ifndef _TIMEZONE_DEFINED /* also in sys/time.h */
+#define _TIMEZONE_DEFINED
+struct timezone {
+  int tz_minuteswest;
+  int tz_dsttime;
+};
+
+  extern int __cdecl gettimeofday (struct timeval *p, struct timezone *z);
+#endif