summaryrefslogtreecommitdiff
path: root/src/now.c
blob: dc408e63c064840ddaa076770521f180f8945151 (plain)
1
2
3
4
5
6
7
8
9
10
#include "now.h"

#include <time.h>

#include "datetime.h"

datetime_sec now()
{
  return time((long *)0);
}