mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
25 lines
401 B
C
25 lines
401 B
C
|
/* Generic alloca.h */
|
||
|
|
||
|
#ifndef _AC_ALLOCA_H
|
||
|
#define _AC_ALLOCA_H
|
||
|
|
||
|
/* AIX requires this to be the first thing in the file. */
|
||
|
#ifdef __GNUC__
|
||
|
# define alloca __builtin_alloca
|
||
|
#else
|
||
|
# if HAVE_ALLOCA_H
|
||
|
# include <alloca.h>
|
||
|
# else
|
||
|
# ifdef _AIX
|
||
|
#pragma alloca
|
||
|
# else
|
||
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
||
|
char *alloca ();
|
||
|
# endif
|
||
|
# endif
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* _AC_ALLOCA_H */
|