mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
14 lines
255 B
C
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 */
|