Craig A. Berry wrote:
> Is vmsish.h the best place for this? BTW, this is based on vmsperl_pre56_3.
>
> --- vms/vmsish.h;-0 Thu Mar 2 20:25:05 2000
> +++ vms/vmsish.h Mon Mar 6 12:15:37 2000
> @@ -717,4 +717,9 @@
> #undef HAS_NTOHL
> #endif
>
> +/* The C RTL manual says to undef the macro for DEC C 5.2 and lower. */
> +#if defined(fileno) && __DECC_VER < 50300000
> +#undef fileno
> +#endif
> +
> #endif /* __vmsish_h_included */
> End of Patch.
>
Perhaps you want a defined(__DECC_VER) to protect the gcc users?
Peter Prymmer