openldap/include/ac/stdarg.h
Kurt Zeilenga da42acb93a Update handling of string headers.
Update NT port.
1998-11-17 19:05:48 +00:00

20 lines
294 B
C

/* Generic stdarg.h */
#ifndef _AC_STDARG_H
#define _AC_STDARG_H 1
#if defined( HAVE_STDARG ) || \
( defined( HAVE_STDARG_H ) && defined( __STDC__ ) )
# include <stdarg.h>
# ifndef HAVE_STDARG
# define HAVE_STDARG 1
# endif
#else
# include <varargs.h>
#endif
#endif /* _AC_STDARG_H */