diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2010-07-09 12:32:17 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2010-07-09 12:32:17 +0200 |
commit | 6c027b4de25a529908be895e7ff19236f4002a57 (patch) | |
tree | f70d3a400bbb9ba8a83e9d4ffcaa4b6e367fc8bb /try_clock_gettime.c | |
download | crypto-6c027b4de25a529908be895e7ff19236f4002a57.zip crypto-6c027b4de25a529908be895e7ff19236f4002a57.tar.gz |
initial commit, resurrect one of my realy old projects
Diffstat (limited to 'try_clock_gettime.c')
-rw-r--r-- | try_clock_gettime.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/try_clock_gettime.c b/try_clock_gettime.c new file mode 100644 index 0000000..239900e --- /dev/null +++ b/try_clock_gettime.c @@ -0,0 +1,12 @@ +#include <stdlib.h> +#include <unistd.h> +#include <time.h> + +int main(void) +{ + struct timespec s; + clock_gettime(CLOCK_REALTIME, &s); + return EXIT_SUCCESS; +} + + |