Home | History | Annotate | Download | only in X11

Lines Matching defs:alloca

68 #  include <alloca.h>
80 # ifndef alloca
81 # define alloca __builtin_alloca
82 # endif /* !alloca */
83 # define ALLOCATE_LOCAL(size) alloca((int)(size))
87 * warning: old mips alloca (pre 2.10) is unusable, new one is built in
89 * from alloca.h which #defines alloca.
91 # if defined(__sun) || defined(alloca)
93 * Some System V boxes extract alloca.o from /lib/libPW.a; if you
94 * decide that you don't want to use alloca, you might want to fix it here.
96 /* alloca might be a macro taking one arg (hi, Sun!), so give it one. */
99 extern void *alloca(__Xnullarg);
101 # define ALLOCATE_LOCAL(size) alloca((int)(size))
102 # endif /* who does alloca */