Skip to content

Instantly share code, notes, and snippets.

@kmcallister
Created April 14, 2012 07:26
Show Gist options
  • Save kmcallister/2382628 to your computer and use it in GitHub Desktop.
Save kmcallister/2382628 to your computer and use it in GitHub Desktop.
clock_gettime
// gcc -Wall -lrt -std=c99 -o foo foo.c
#define _POSIX_C_SOURCE 199309L
#include <time.h>
int main() {
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment