Add timestamp function NT_Now().

Change-Id: I797a220308cd64ca0545222b433a18aa2294bac5
This commit is contained in:
Peter Johnson
2015-06-23 01:23:40 -07:00
parent b195dfbe09
commit 2a1ccaff1e
3 changed files with 124 additions and 3 deletions

12
src/support/timestamp.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef TIMESTAMP_H_
#define TIMESTAMP_H_
#ifdef __cplusplus
extern "C" {
#endif
unsigned long long NT_Now(void);
#ifdef __cplusplus
}
#endif
#endif /* TIMESTAMP_H_ */