From: Yang Tse Date: Mon, 10 Dec 2012 14:42:12 +0000 (+0100) Subject: examples/anyauthput.c: fix Tru64 compilation issue X-Git-Tag: curl-7_29_0~222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d758234ade7c1cbc4cdd91ea1bd6defb6b690340;p=curl examples/anyauthput.c: fix Tru64 compilation issue --- 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 # endif # include @@ -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