]> CyberLeo.Net >> Repos - CDN/shlib.git/blob - src/usec/usec.c
src/usec: C helper to emit microseconds on FreeBSD, which lacks date's %N
[CDN/shlib.git] / src / usec / usec.c
1 #include <stdio.h>
2 #include <sys/time.h>
3 int main(void) {
4   struct timeval time_now;
5   gettimeofday(&time_now,NULL);
6   printf ("%ld%06ld\n",time_now.tv_sec,time_now.tv_usec);
7   return 0;
8 }
9