summaryrefslogtreecommitdiff
path: root/clock_gettime.c
Commit message (Collapse)AuthorAgeFilesLines
* OS X, missing (misplaced) return in clock_gettime.Gary E. Miller2015-03-091-1/+1
| | | | Bad nesting of #ifdef and return 0
* OS X can now compile clock_gettime.cGary E. Miller2015-03-081-2/+2
| | | | Much more to do on OS X
* Implement POSIX clock_gettime(3) for systems that lack it (like Mac OS X).Eric S. Raymond2015-03-011-0/+47
On Mac OS X it will get proper nanosecond precision; elsewhere, only microseconds. Hides the conformance failure from the rest of the code. All regression tests pass.