Skip to content
Snippets Groups Projects
Commit 0221763e authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Generic variable argument header. Hides ugly ifdef.

parent 24a6a91c
No related branches found
No related tags found
No related merge requests found
/* 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 */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment