diff options
author | Yang Tse <yangsita@gmail.com> | 2009-12-30 17:59:56 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-12-30 17:59:56 +0000 |
commit | 3184a91ec86b2f35f16a8e11e2daa03fac8e91b6 (patch) | |
tree | 1f9a39c4001243eae8b7b45f98951502a51fea0d /lib/setup.h | |
parent | 0dde9056d7c21dd9ad0afcb8fe2f4ec2408acf10 (diff) | |
download | curl-3184a91ec86b2f35f16a8e11e2daa03fac8e91b6.tar.gz |
VMS specific preprocessor symbol checking adjustments
Diffstat (limited to 'lib/setup.h')
-rw-r--r-- | lib/setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.h b/lib/setup.h index 49d14ed09..8620f83b9 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -326,7 +326,7 @@ */ #ifndef SIZEOF_OFF_T -# if defined(__VMS) && (defined(__alpha) || defined(__ia64)) +# if defined(__VMS) && !defined(__VAX) # if defined(_LARGEFILE) # define SIZEOF_OFF_T 8 # endif |