From 0221763eacd958b20f54f3f50ce1a69b9ac419b7 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Fri, 6 Nov 1998 01:03:14 +0000 Subject: [PATCH] Generic variable argument header. Hides ugly ifdef. --- include/ac/stdarg.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/ac/stdarg.h diff --git a/include/ac/stdarg.h b/include/ac/stdarg.h new file mode 100644 index 0000000000..751e4bf7c2 --- /dev/null +++ b/include/ac/stdarg.h @@ -0,0 +1,14 @@ +/* Generic stdarg.h */ + +#ifndef _AC_STDARG_H +#define _AC_STDARG_H + +#if defined( HAVE_STDARG_H ) && \ + ( defined( __STDC__) || defined( __WIN32 ) +# define HAVE_STDARG 1 +# include +#else +# include +#endif + +#endif /* _AC_STDARG_H */ -- 2.39.5