scc

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

stdio.h (216B)


      1 #ifndef _SIZET
      2 typedef unsigned size_t;
      3 #define _SIZET
      4 #endif
      5 
      6 #define BUFSIZ        512
      7 #define FILENAME_MAX  256
      8 #define FOPEN_MAX      16
      9 
     10 #define TMP_MAX        25
     11 #define L_tmpnam      256
     12 
     13 typedef long fpos_t;