aboutsummaryrefslogtreecommitdiffstats
path: root/win32/win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'win32/win32.h')
-rw-r--r--win32/win32.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/win32/win32.h b/win32/win32.h
index 0cd07eebcc..94c8bd7845 100644
--- a/win32/win32.h
+++ b/win32/win32.h
@@ -100,7 +100,11 @@ extern "C++" {
#include <math.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include <sys/utime.h>
+#if !defined(__BORLANDC__)
+# include <sys/utime.h>
+#else
+# include <utime.h>
+#endif
#include <io.h>
#include <malloc.h>
@@ -248,7 +252,9 @@ extern int isnan(double);
//
// stubs
//
+#if !defined(__BORLANDC__)
extern int ioctl (int, unsigned int, long);
+#endif
extern UIDTYPE getuid (void);
extern UIDTYPE geteuid (void);
extern GIDTYPE getgid (void);