12345678910111213141516171819202122 |
- #pragma once
- #include <stdlib.h>
- #include <stdio.h>
- #include <inttypes.h>
- #include <sys/types.h>
- #ifndef NSEC_PER_SEC
- #define NSEC_PER_SEC 1000000000LL
- #endif
- /*
- * monotonic time in nanoseconds
- * args:
- * none
- *
- * asserts:
- * none
- *
- * returns: monotonic time in nanoseconds
- */
- uint64_t ns_time_monotonic();
|