1 // xfwrap internal header
2 // NOTE: no include guard
3
4 // includes <xfwrap1> for [0,10] arguments
5
6  #if _NMAX != 10
7   #error argument number mismatch
8  #endif /* _NMAX != 10 */
9
10 #ifdef _NOZERO
11  #undef _NOZERO
12
13 #else /* _NOZERO */
14  #define _NARGS 0
15  #include <xfwrap1>
16  #undef _NARGS
17 #endif /* _NOZERO */
18
19 #define _NARGS 1
20 #include <xfwrap1>
21 #undef _NARGS
22
23 #define _NARGS 2
24 #include <xfwrap1>
25 #undef _NARGS
26
27 #define _NARGS 3
28 #include <xfwrap1>
29 #undef _NARGS
30
31 #define _NARGS 4
32 #include <xfwrap1>
33 #undef _NARGS
34
35 #define _NARGS 5
36 #include <xfwrap1>
37 #undef _NARGS
38
39 #define _NARGS 6
40 #include <xfwrap1>
41 #undef _NARGS
42
43 #define _NARGS 7
44 #include <xfwrap1>
45 #undef _NARGS
46
47 #define _NARGS 8
48 #include <xfwrap1>
49 #undef _NARGS
50
51 #define _NARGS 9
52 #include <xfwrap1>
53 #undef _NARGS
54
55 #define _NARGS 10
56 #include <xfwrap1>
57 #undef _NARGS
58
59 #undef _INCL_FILE
Lines 60 ... 64 are skipped.
65