with #if PROTOTYPES rather than with #ifdef __STDC__. The latter
loses with Dynix/PTX.
(wrapf) [PROTOTYPES]: Similarly, guard ANSI-style ... definition.
Suggestion from Marcus Daniels.
# include <sys/ptem.h>
#endif
#include <getopt.h>
-#ifdef __STDC__
+#if PROTOTYPES
# include <stdarg.h>
# define VA_START(args, lastarg) va_start(args, lastarg)
#else
/* VARARGS */
static void
-#ifdef __STDC__
+#if PROTOTYPES
wrapf (const char *message,...)
#else
wrapf (message, va_alist)