rt: rename nano_time() builtin to match time::precise_time_ns()

This commit is contained in:
Chris Peterson
2012-02-18 01:39:42 -08:00
parent b73bc30858
commit 3d202d7eae
3 changed files with 4 additions and 4 deletions

View File

@@ -420,7 +420,7 @@ get_time(uint32_t *sec, uint32_t *usec) {
#endif
extern "C" CDECL void
nano_time(uint64_t *ns) {
precise_time_ns(uint64_t *ns) {
timer t;
*ns = t.time_ns();
}