mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
15 lines
251 B
C
15 lines
251 B
C
|
/* 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 <stdarg.h>
|
||
|
#else
|
||
|
# include <vararg.h>
|
||
|
#endif
|
||
|
|
||
|
#endif /* _AC_STDARG_H */
|