Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / libnacl / cpucycles / gettimeofday.h
blob147b127b2fcb4f0c2ad382ca1e7d82971ac72ece
1 /*
2 cpucycles gettimeofday.h version 20060318
3 D. J. Bernstein
4 Public domain.
5 */
7 #ifndef CPUCYCLES_gettimeofday_h
8 #define CPUCYCLES_gettimeofday_h
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
14 extern long long cpucycles_gettimeofday(void);
15 extern long long cpucycles_gettimeofday_persecond(void);
17 #ifdef __cplusplus
19 #endif
21 #ifndef cpucycles_implementation
22 #define cpucycles_implementation "gettimeofday"
23 #define cpucycles cpucycles_gettimeofday
24 #define cpucycles_persecond cpucycles_gettimeofday_persecond
25 #endif
27 #endif