home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / emacs-19.28-src.lha / emacs-19.28 / unixlib / include / alloca.h next >
Encoding:
C/C++ Source or Header  |  1993-08-27  |  91 b   |  9 lines

  1. #ifndef ALLOCA_H
  2. #define ALLOCA_H
  3.  
  4. #include <stddef.h>
  5.  
  6. void *alloca(size_t size);
  7.  
  8. #endif
  9.