examples/anyauthput.c: fix Tru64 compilation issue

This commit is contained in:
Yang Tse 2012-12-10 15:42:12 +01:00
parent c07a6f3ff3
commit d758234ade
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
# ifdef __VMS # ifdef __VMS
typedef int intptr_t; typedef int intptr_t;
# endif # endif
# if !defined(_AIX) && !defined(__sgi) && !defined(__DECC) # if !defined(_AIX) && !defined(__sgi) && !defined(__osf__)
# include <stdint.h> # include <stdint.h>
# endif # endif
# include <unistd.h> # include <unistd.h>
@ -53,7 +53,7 @@
#define TRUE 1 #define TRUE 1
#endif #endif
#if defined(_AIX) || defined(__sgi) || defined(__DECC) #if defined(_AIX) || defined(__sgi) || defined(__osf__)
#ifndef intptr_t #ifndef intptr_t
#define intptr_t long #define intptr_t long
#endif #endif