If we have stdarg.h and sys/types.h we include them here.

This commit is contained in:
Marcus Sundberg 2000-05-31 22:51:53 +00:00
parent 77c92b8334
commit a087ac10b3

View file

@ -32,6 +32,12 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifndef max
# define max(a,b) ((a) > (b) ? (a) : (b))