summaryrefslogtreecommitdiff
path: root/src/time/timespec_get.c
AgeCommit message (Collapse)AuthorFilesLines
2018-04-17time: C11 visibility fixesA. Wilcox1-1/+1
The timespec_get function, and TIME_* macros, are only in C11. Since musl is compiled with -std=c99, TIME_UTC is unavailable in the timespec_get implementation, so we use the raw value 1.
2014-09-06add C11 timespec_get function, with associated time.h changes for C11Rich Felker1-0/+12
based on patch by Jens Gustedt for inclusion with C11 threads implementation, but committed separately since it's independent of threads.