alloca.h 197 B

12345678910111213141516
  1. #ifndef __GBLIBC_ALLOCA_H_
  2. #define __GBLIBC_ALLOCA_H_
  3. #include <stdint.h>
  4. #define alloca(size) __builtin_alloca(size)
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif