summaryrefslogtreecommitdiff
path: root/nacl/cpucycles/mips.h
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-07-02 09:53:34 -0400
committerirungentoo <irungentoo@gmail.com>2013-07-02 09:53:34 -0400
commite2967396ac73cb7410787886cdaf072a184ffc49 (patch)
tree527a74d25a4a0705fc641994fd35bfab22662034 /nacl/cpucycles/mips.h
parent8928c817df345f29aa0b194743595aa11bd6a8ba (diff)
Added NaCl crypto library.
Diffstat (limited to 'nacl/cpucycles/mips.h')
-rw-r--r--nacl/cpucycles/mips.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/nacl/cpucycles/mips.h b/nacl/cpucycles/mips.h
new file mode 100644
index 00000000..6f1b26c3
--- /dev/null
+++ b/nacl/cpucycles/mips.h
@@ -0,0 +1,27 @@
1/*
2cpucycles mips.h version 20100802
3D. J. Bernstein
4Public domain.
5*/
6
7#ifndef CPUCYCLES_mips_h
8#define CPUCYCLES_mips_h
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14extern long long cpucycles_mips(void);
15extern long long cpucycles_mips_persecond(void);
16
17#ifdef __cplusplus
18}
19#endif
20
21#ifndef cpucycles_implementation
22#define cpucycles_implementation "mips"
23#define cpucycles cpucycles_mips
24#define cpucycles_persecond cpucycles_mips_persecond
25#endif
26
27#endif