Skip to content

Instantly share code, notes, and snippets.

@juddgaddie
juddgaddie / current_utc_time.c
Created August 17, 2025 16:49 — forked from jbenet/current_utc_time.c
work around lack of clock_gettime in os x
/*
author: jbenet
os x, compile with: gcc -o testo test.c
linux, compile with: gcc -o testo test.c -lrt
*/
#include <time.h>
#include <sys/time.h>
#include <stdio.h>