utc-time.c 204 B

1234567891011
  1. /* This file simply returns number of seconds since epoch in UTC
  2. */
  3. #include <time.h>
  4. #include <stdio.h>
  5. int main() {
  6. time_t now = time(NULL);
  7. printf("%lu\n", mktime(gmtime(&now)));
  8. return 0;
  9. }