]> git.sur5r.net Git - openldap/blob - include/ac/stdarg.h
Final round of module changes
[openldap] / include / ac / stdarg.h
1 /* Generic stdarg.h */
2 /*
3  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #ifndef _AC_STDARG_H
13 #define _AC_STDARG_H 1
14
15 #if defined( HAVE_STDARG ) || \
16         ( defined( HAVE_STDARG_H ) && defined( __STDC__ ) ) 
17
18 #       include <stdarg.h>
19
20 #       ifndef HAVE_STDARG
21 #               define HAVE_STDARG 1
22 #       endif
23
24 #else
25 #       include <varargs.h>
26 #endif
27
28 #endif /* _AC_STDARG_H */