summaryrefslogtreecommitdiff
path: root/nacl/curvecp/die.h
diff options
context:
space:
mode:
Diffstat (limited to 'nacl/curvecp/die.h')
-rw-r--r--nacl/curvecp/die.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/nacl/curvecp/die.h b/nacl/curvecp/die.h
new file mode 100644
index 00000000..52ec7616
--- /dev/null
+++ b/nacl/curvecp/die.h
@@ -0,0 +1,16 @@
1#ifndef DIE_H
2#define DIE_H
3
4extern void die_9(int,const char *,const char *,const char *,const char *,const char *,const char *,const char *,const char *,const char *);
5
6#define die_8(x,a,b,c,d,e,f,g,h) die_9(x,a,b,c,d,e,f,g,h,0)
7#define die_7(x,a,b,c,d,e,f,g) die_8(x,a,b,c,d,e,f,g,0)
8#define die_6(x,a,b,c,d,e,f) die_7(x,a,b,c,d,e,f,0)
9#define die_5(x,a,b,c,d,e) die_6(x,a,b,c,d,e,0)
10#define die_4(x,a,b,c,d) die_5(x,a,b,c,d,0)
11#define die_3(x,a,b,c) die_4(x,a,b,c,0)
12#define die_2(x,a,b) die_3(x,a,b,0)
13#define die_1(x,a) die_2(x,a,0)
14#define die_0(x) die_1(x,0)
15
16#endif