scc

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

totime-posix.c (90B)


      1 #include <time.h>
      2 
      3 #include <scc/scc.h>
      4 
      5 time_t
      6 totime(long long t)
      7 {
      8         return t;
      9 }