fromepoch-posix.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
fromepoch-posix.c (86B)
---
1 #include <time.h>
2
3 #include <scc/scc.h>
4
5 long long
6 fromepoch(time_t t)
7 {
8 return t;
9 }