diff options
Diffstat (limited to 'src/now.c')
-rw-r--r-- | src/now.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,8 +1,10 @@ +#include "now.h" + #include <time.h> + #include "datetime.h" -#include "now.h" datetime_sec now() { - return time((long *) 0); + return time((long *)0); } |