2
0

alloca.h 106 B

123456
  1. #ifndef _ALLOCA_H
  2. #define _ALLOCA_H
  3. #define alloca(size) __builtin_alloca (size)
  4. #endif /* _ALLOCA_H */