Displaying 1 result from an estimated 1 matches for "netnsd".
Did you mean:
  netbsd
  
2002 May 17
0
Re: R-1.5.0 on NetBSD (PR#1566)
...__P in zconf.h */
> +
> +#ifndef OF /* function prototypes */
> +#  ifdef STDC
> +#    define OF(args)  args
> +#  else
> +#    define OF(args)  ()
> +#  endif
> +#endif
> +
Thanks. That extract is taken directly from zconf.h in the official
version, so do I gather that NetNSD has gratuitously removed it?
R assumes ISO C, so we don't need the test for STDC.
This is surely a bug in NetBSD and not in R, so I hope you have also filed
a NetBSD bug report.  I've add the comment
/* workaround for NetBSD vandalism on zconf.h */
and that seems a reasonable descriptio...