summaryrefslogtreecommitdiff
path: root/nacl/okcompilers/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'nacl/okcompilers/lib.c')
-rw-r--r--nacl/okcompilers/lib.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/nacl/okcompilers/lib.c b/nacl/okcompilers/lib.c
deleted file mode 100644
index cf2e3790..00000000
--- a/nacl/okcompilers/lib.c
+++ /dev/null
@@ -1,29 +0,0 @@
1int not3(int n)
2{
3 return n != 3;
4}
5
6int bytes(int n)
7{
8 return (n + 7) / 8;
9}
10
11long long shr32(long long n)
12{
13 return n >> 32;
14}
15
16double double5(void)
17{
18 return 5.0;
19}
20
21int intbytes(void)
22{
23 return sizeof(int);
24}
25
26int longbytes(void)
27{
28 return sizeof(long);
29}