logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

alloca.h (219B)


  1. #ifndef _ALLOCA_H
  2. #define _ALLOCA_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define __NEED_size_t
  7. #include <bits/alltypes.h>
  8. void *alloca(size_t);
  9. #define alloca __builtin_alloca
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif