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
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