1 #ifndef _FSP_PROTO_H_
2 #define _FSP_PROTO_H_ 1
3 
4 
5 /* #ifdef UNDERSTANDS_PROTOTYPES */
6 #ifdef PROTOTYPES
7 #define PROTO0(a) a
8 #define PROTO1(a, b) (a b)
9 #define PROTO2(a, b, c, d) (a b, c d)
10 #define PROTO3(a, b, c, d, e, f) (a b, c d, e f)
11 #define PROTO4(a, b, c, d, e, f, g, h) (a b, c d, e f, g h)
12 #define PROTO5(a, b, c, d, e, f, g, h, i, j) (a b, c d, e f, g h, i j)
13 #define PROTO6(a, b, c, d, e, f, g, h, i, j, k, l) (a b, c d, e f, g h, i j, k l)
14 #define PROTO7(a, b, c, d, e, f, g, h, i, j, k, l, m, n) (a b, c d, e f, g h, i j, k l, m n)
15 #else
16 #define PROTO0(a) ()
17 #define PROTO1(a, b) (b) a b;
18 #define PROTO2(a, b, c, d) (b, d) a b; c d;
19 #define PROTO3(a, b, c, d, e, f) (b, d, f) a b; c d; e f;
20 #define PROTO4(a, b, c, d, e, f, g, h) (b, d, f, h) a b; c d; e f; g h;
21 #define PROTO5(a, b, c, d, e, f, g, h, i, j) (b, d, f, h, j) \
22         a b; c d; e f; g h; i j;
23 #define PROTO6(a, b, c, d, e, f, g, h, i, j, k, l) (b, d, f, h, j, l) \
24         a b; c d; e f; g h; i j; k l;
25 #define PROTO6(a, b, c, d, e, f, g, h, i, j, k, l, m, n) (b, d, f, h, j, l) \
26         a b; c d; e f; g h; i j; k l;m n;
27 #endif /* UNDERSTANDS_PROTOTYPES */
28 
29 #endif
30