diff options
author | Yang Tse <yangsita@gmail.com> | 2009-06-10 12:59:59 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-06-10 12:59:59 +0000 |
commit | 5d502eb90c674dcba8e169550174b8439c5061da (patch) | |
tree | 8bbbeb5f32692a8aad16c4af736d3e01b31f2930 /docs/examples | |
parent | d6662d8442704d840f6a0916b7f37259b7c7e918 (diff) |
VMS adjustment
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/anyauthput.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/examples/anyauthput.c b/docs/examples/anyauthput.c index dd5b5ddf7..c96f3c180 100644 --- a/docs/examples/anyauthput.c +++ b/docs/examples/anyauthput.c @@ -13,7 +13,9 @@ #ifdef WIN32 # include <io.h> #else -# ifndef __VMS +# ifdef __VMS + typedef int intptr_t; +# else # include <stdint.h> # endif # include <unistd.h> |