#include <stdio.h>
#include <stdlib.h>
-#include <ac/string.h>
-
-#if defined( HAVE_STDARG_H ) && __STDC__
-#include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
#include <ac/setproctitle.h>
+#include <ac/string.h>
+#include <ac/stdarg.h>
/*
* Copyright (c) 1990,1991 Regents of the University of Michigan.
/* VARARGS */
void setproctitle
-#if defined( HAVE_STDARG_H ) && __STDC__
+#if defined( HAVE_STDARG )
( const char *fmt, ... )
#else
( fmt, va_alist )
char buf[ 1024 ];
va_list ap;
-#if defined( HAVE_STDARG_H ) && __STDC__
+#if defined( HAVE_STDARG )
va_start(ap, fmt);
#else
va_start(ap);