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