home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / ALLOCA.H next >
Text File  |  1992-11-12  |  176b  |  11 lines

  1. /* alloca.h (emx+gcc) */
  2.  
  3. #if !defined (_ALLOCA_H)
  4. #define _ALLOCA_H
  5.  
  6. #if !defined (alloca)
  7. #define alloca __builtin_alloca
  8. #endif
  9.  
  10. #endif /* !defined (_ALLOCA_H) */
  11.