scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | README | LICENSE

stdio.h (186B)


      1 #define BUFSIZ        512
      2 #define FILENAME_MAX  256
      3 #define FOPEN_MAX      16
      4 
      5 #define TMP_MAX        25
      6 #define L_tmpnam      256
      7 
      8 #define _TMPNAME      "TMP.000"
      9 
     10 typedef long fpos_t;