summaryrefslogtreecommitdiff
path: root/nacl/cpucycles/cortex.h
diff options
context:
space:
mode:
Diffstat (limited to 'nacl/cpucycles/cortex.h')
-rw-r--r--nacl/cpucycles/cortex.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/nacl/cpucycles/cortex.h b/nacl/cpucycles/cortex.h
new file mode 100644
index 00000000..e622f132
--- /dev/null
+++ b/nacl/cpucycles/cortex.h
@@ -0,0 +1,27 @@
1/*
2cpucycles cortex.h version 20100912
3D. J. Bernstein
4Public domain.
5*/
6
7#ifndef CPUCYCLES_cortex_h
8#define CPUCYCLES_cortex_h
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14extern long long cpucycles_cortex(void);
15extern long long cpucycles_cortex_persecond(void);
16
17#ifdef __cplusplus
18}
19#endif
20
21#ifndef cpucycles_implementation
22#define cpucycles_implementation "cortex"
23#define cpucycles cpucycles_cortex
24#define cpucycles_persecond cpucycles_cortex_persecond
25#endif
26
27#endif