openldap/include/ac/stdarg.h
Kurt Zeilenga 36378ea411 Updated MSVC5 workspaces and projects.
Added ac/stdarg.h and updated liblber encode/decode to use it.
1998-11-06 01:18:49 +00:00

14 lines
255 B
C

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