mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:13:32 +03:00
VMS specific preprocessor symbol checking adjustments
This commit is contained in:
parent
0dde9056d7
commit
3184a91ec8
27 changed files with 47 additions and 47 deletions
|
|
@ -422,7 +422,7 @@ typedef int sig_atomic_t;
|
|||
* Actually use __32_getpwuid() on 64-bit VMS builds for getpwuid()
|
||||
*/
|
||||
|
||||
#if defined(VMS) && \
|
||||
#if defined(__VMS) && \
|
||||
defined(__INITIAL_POINTER_SIZE) && (__INITIAL_POINTER_SIZE == 64)
|
||||
#define getpwuid __32_getpwuid
|
||||
#endif
|
||||
|
|
@ -432,7 +432,7 @@ typedef int sig_atomic_t;
|
|||
* Macro argv_item_t hides platform details to code using it.
|
||||
*/
|
||||
|
||||
#ifdef VMS
|
||||
#ifdef __VMS
|
||||
#define argv_item_t __char_ptr32
|
||||
#else
|
||||
#define argv_item_t char *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue