diff options
author | irungentoo <irungentoo@gmail.com> | 2013-07-13 10:09:38 -0400 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-07-13 10:09:38 -0400 |
commit | d4fe483efd3e0062f12430efe9deb66d43d914d7 (patch) | |
tree | e6aa9ac716ae82cdb15c6e6cb5d9d1d9d29f053b /nacl/cpucycles/monotonic.h | |
parent | 835ef0320d47372eac14bef31c979b8217d04498 (diff) |
NaCl moved to other repo.
Diffstat (limited to 'nacl/cpucycles/monotonic.h')
-rw-r--r-- | nacl/cpucycles/monotonic.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/nacl/cpucycles/monotonic.h b/nacl/cpucycles/monotonic.h deleted file mode 100644 index 9070860b..00000000 --- a/nacl/cpucycles/monotonic.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | /* | ||
2 | cpucycles monotonic.h version 20100803 | ||
3 | D. J. Bernstein | ||
4 | Public domain. | ||
5 | */ | ||
6 | |||
7 | #ifndef CPUCYCLES_monotonic_h | ||
8 | #define CPUCYCLES_monotonic_h | ||
9 | |||
10 | #ifdef __cplusplus | ||
11 | extern "C" { | ||
12 | #endif | ||
13 | |||
14 | extern long long cpucycles_monotonic(void); | ||
15 | extern long long cpucycles_monotonic_persecond(void); | ||
16 | |||
17 | #ifdef __cplusplus | ||
18 | } | ||
19 | #endif | ||
20 | |||
21 | #ifndef cpucycles_implementation | ||
22 | #define cpucycles_implementation "monotonic" | ||
23 | #define cpucycles cpucycles_monotonic | ||
24 | #define cpucycles_persecond cpucycles_monotonic_persecond | ||
25 | #endif | ||
26 | |||
27 | #endif | ||