scc

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

stddef.h (200B)


      1 #ifndef _SIZET
      2 typedef unsigned long size_t;
      3 #define _SIZET
      4 #endif
      5 
      6 #ifndef _WCHAR_T
      7 typedef int wchar_t;
      8 #define _WCHAR_T
      9 #endif
     10 
     11 #ifndef _PTRDIFF_T
     12 typedef long ptrdiff_t;
     13 #define _PTRDIFF_T
     14 #endif