summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-12-04 11:06:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-12-04 11:06:17 +0000
commit92aea29a300cf578027b52ea65adf6c1fb75efa6 (patch)
tree106a9eade08acd855645f7d1a87310eb82a35069 /src
parente1c01af929bb24375d72ecb264714d2f49216612 (diff)
downloadcurl-92aea29a300cf578027b52ea65adf6c1fb75efa6.tar.gz
make WIN32 defined for Borland properly, as told by Alexander J. Oss
Diffstat (limited to 'src')
-rw-r--r--src/setup.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/setup.h b/src/setup.h
index 5cf5e678d..79539a693 100644
--- a/src/setup.h
+++ b/src/setup.h
@@ -25,9 +25,8 @@
#include <stdio.h>
-#if !defined(WIN32) && defined(_WIN32)
-/* This _might_ be a good Borland fix. Please report whether this works or
- not! */
+#if !defined(WIN32) && defined(__WIN32__)
+/* Borland fix */
#define WIN32
#endif