VMS specific preprocessor symbol checking adjustments

pull/1/head
Yang Tse 15 years ago
parent 92dcb407d6
commit 004c2e3400
  1. 4
      setup_once.h

@ -415,7 +415,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
@ -425,7 +425,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…
Cancel
Save