summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-12-10 15:42:12 +0100
committerYang Tse <yangsita@gmail.com>2012-12-10 15:42:12 +0100
commitd758234ade7c1cbc4cdd91ea1bd6defb6b690340 (patch)
tree311ebd3de8c3c5c7322fe5f6e9d24925bf572877
parentc07a6f3ff36c85ce1daec34c16dea8ab95ec4c78 (diff)
downloadcurl-d758234ade7c1cbc4cdd91ea1bd6defb6b690340.tar.gz
examples/anyauthput.c: fix Tru64 compilation issue
-rw-r--r--docs/examples/anyauthput.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/anyauthput.c b/docs/examples/anyauthput.c
index 6eea98f1d..b89dca2e1 100644
--- a/docs/examples/anyauthput.c
+++ b/docs/examples/anyauthput.c
@@ -27,7 +27,7 @@
# ifdef __VMS
typedef int intptr_t;
# endif
-# if !defined(_AIX) && !defined(__sgi) && !defined(__DECC)
+# if !defined(_AIX) && !defined(__sgi) && !defined(__osf__)
# include <stdint.h>
# endif
# include <unistd.h>
@@ -53,7 +53,7 @@
#define TRUE 1
#endif
-#if defined(_AIX) || defined(__sgi) || defined(__DECC)
+#if defined(_AIX) || defined(__sgi) || defined(__osf__)
#ifndef intptr_t
#define intptr_t long
#endif