scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

stdlib.h (198B)


      1 #ifndef _SIZET
      2 typedef unsigned size_t;
      3 #define _SIZET
      4 #endif
      5 
      6 #define EXIT_FAILURE 1
      7 #define EXIT_SUCCESS 0
      8 
      9 #ifndef _WCHAR_T
     10 typedef short wchar_t;
     11 #define _WCHAR_T
     12 #endif
     13 
     14 #define _ALIGNTYPE int