diff options
Diffstat (limited to 'vms/vmsish.h')
-rw-r--r-- | vms/vmsish.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index 6c5c506a42..55401f7f6b 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -717,4 +717,9 @@ typedef char __VMS_SEPYTOTORP__; #undef HAS_NTOHL #endif +/* The C RTL manual says to undef the macro for DEC C 5.2 and lower. */ +#if defined(fileno) && defined(__DECC_VER) && __DECC_VER < 50300000 +# undef fileno +#endif + #endif /* __vmsish_h_included */ |