annotate tests/t08.good @ 28:8a955e3dda2c posted-20101220

two more tests, more fixes
author David A. Holland
date Mon, 20 Dec 2010 05:42:15 -0500
parents
children c24cbfa44f81
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
9
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
10
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
11
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
12
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
13 cast-away warnings
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
14 * from gcc -Wcast-qual; it should be used with caution because it
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
15 * can hide valid errors; in particular most valid uses are in
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
16 * situations where the API requires it, not to cast away string
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
17 * constants. We don't use *intptr_t on purpose here and we are
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
18 * explicit about unsigned long so that we don't have additional
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
19 * dependencies.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
20 */
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
21
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
22
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
23 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
24 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
25 /usr/include/sys/cdefs.h:162:23: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
26 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
27 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
28 /usr/include/sys/cdefs.h:162:25: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
29 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
30 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
31 /usr/include/sys/cdefs.h:162:21: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
32 ";
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
33 * unfortunately, these then cause warnings under "-ansi -pedantic".
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
34 * GCC2 uses a new, peculiar __attribute__((attrs)) style. All of
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
35 * these work for GNU C++ (modulo a slight glitch in the C++ grammar
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
36 * in the distribution version of 2.5.5).
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
37 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
38 * GCC defines a pure function as depending only on its arguments and
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
39 * global variables. Typical examples are strlen and sqrt.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
40 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
41 * GCC defines a function as depending only on its arguments.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
42 * Therefore calling a function again with identical arguments
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
43 * will always produce the same result.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
44 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
45 * Rounding modes for floating point operations are considered global
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
46 * variables and prevent sqrt from being a function.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
47 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
48 * Calls to functions can be optimised away and moved around
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
49 * without limitations.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
50 */
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
51 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
52 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
53 /usr/include/sys/cdefs.h:187:23: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
54 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
55 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
56 /usr/include/sys/cdefs.h:187:25: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
57 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
58 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
59 /usr/include/sys/cdefs.h:187:21: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
60 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
61 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
62 /usr/include/sys/cdefs.h:191:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
63 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
64 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
65 /usr/include/sys/cdefs.h:191:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
66 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
67 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
68 /usr/include/sys/cdefs.h:191:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
69 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
70 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
71 /usr/include/sys/cdefs.h:199:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
72 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
73 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
74 /usr/include/sys/cdefs.h:199:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
75 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
76 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
77 /usr/include/sys/cdefs.h:199:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
78 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
79 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
80 /usr/include/sys/cdefs.h:207:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
81 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
82 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
83 /usr/include/sys/cdefs.h:207:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
84 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
85 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
86 /usr/include/sys/cdefs.h:207:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
87 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
88 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
89 /usr/include/sys/cdefs.h:213:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
90 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
91 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
92 /usr/include/sys/cdefs.h:213:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
93 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
94 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
95 /usr/include/sys/cdefs.h:213:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
96 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
97 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
98 /usr/include/sys/cdefs.h:219:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
99 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
100 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
101 /usr/include/sys/cdefs.h:219:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
102 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
103 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
104 /usr/include/sys/cdefs.h:219:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
105 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
106 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
107 /usr/include/sys/cdefs.h:225:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
108 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
109 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
110 /usr/include/sys/cdefs.h:225:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
111 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
112 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
113 /usr/include/sys/cdefs.h:225:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
114 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
115 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
116 /usr/include/sys/cdefs.h:235:24: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
117 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
118 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
119 /usr/include/sys/cdefs.h:235:26: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
120 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
121 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
122 /usr/include/sys/cdefs.h:235:22: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
123
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
124 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
125 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
126 /usr/include/sys/cdefs.h:255:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
127 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
128 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
129 /usr/include/sys/cdefs.h:257:25: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
130 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
131 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
132 /usr/include/sys/cdefs.h:257:27: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
133 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
134 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
135 /usr/include/sys/cdefs.h:257:23: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
136
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
137 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
138 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
139 /usr/include/sys/cdefs.h:265:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
140 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
141 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
142 /usr/include/sys/cdefs.h:266:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
143 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
144 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
145 /usr/include/sys/cdefs.h:266:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
146 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
147 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
148 /usr/include/sys/cdefs.h:266:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
149 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
150 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
151 /usr/include/sys/cdefs.h:268:24: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
152 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
153 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
154 /usr/include/sys/cdefs.h:268:26: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
155 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
156 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
157 /usr/include/sys/cdefs.h:268:22: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
158 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
159 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
160 /usr/include/sys/cdefs.h:289:2: #error: "No function renaming possible"
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
161
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
162 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
163 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
164 /usr/include/sys/cdefs.h:301:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
165 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
166 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
167 /usr/include/sys/cdefs.h:301:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
168 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
169 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
170 /usr/include/sys/cdefs.h:301:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
171
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
172 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
173 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
174 /usr/include/sys/cdefs.h:335:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
175 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
176 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
177 /usr/include/sys/cdefs.h:335:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
178 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
179 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
180 /usr/include/sys/cdefs.h:335:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
181
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
182 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
183 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
184 /usr/include/sys/cdefs.h:349:22: Invalid character 44 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
185 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
186 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
187 /usr/include/sys/cdefs.h:349:24: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
188 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
189 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
190 /usr/include/sys/cdefs.h:349:20: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
191
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
192
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
193
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
194
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
195
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
196
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
197
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
198
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
199
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
200 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
201 In file included from /usr/include/stdio.h:41:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
202 /usr/include/sys/featuretest.h:72:31: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
203
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
204
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
205
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
206
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
207
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
208
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
209
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
210
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
211
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
212
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
213
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
214
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
215
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
216 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
217 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
218 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
219 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
220 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
221 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
222 /usr/include/sys/cdefs_aout.h:21:9: Warning: redefinition of __indr_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
223 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
224 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
225 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
226 /usr/include/sys/cdefs_elf.h:52:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
227 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
228 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
229 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
230 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
231 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
232 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
233 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
234 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
235 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
236 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
237 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
238 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
239 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
240 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
241 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
242 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
243 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
244 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
245 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
246 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
247 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
248 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
249 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
250 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
251 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
252 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
253 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
254 /usr/include/sys/cdefs_aout.h:58:9: Redefinition of __weak_reference is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
255 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
256 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
257 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
258 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
259 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
260 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
261 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
262 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
263 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
264 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
265 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
266 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
267 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
268 /usr/include/sys/cdefs_aout.h:66:9: Redefinition of __warn_references is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
269 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
270 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
271 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
272 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
273 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
274 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
275 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
276 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
277 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
278 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
279 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
280 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
281 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
282 /usr/include/sys/cdefs_aout.h:69:9: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
283 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
284 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
285 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
286 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
287 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
288 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
289 /usr/include/sys/cdefs_aout.h:69:8: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
290 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
291 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
292 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
293 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
294 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
295 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
296 /usr/include/sys/cdefs_aout.h:69:15: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
297 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
298 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
299 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
300 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
301 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
302 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
303 /usr/include/sys/cdefs_aout.h:69:18: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
304 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
305 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
306 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
307 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
308 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
309 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
310 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
311 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
312 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
313 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
314 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
315 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
316 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
317 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
318 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
319 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
320 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
321 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
322 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
323 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
324 /usr/include/sys/cdefs_aout.h:75:9: Redefinition of __IDSTRING is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
325 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
326 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
327 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
328 /usr/include/sys/cdefs_elf.h:115:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
329 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
330 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
331 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
332 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
333 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
334 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
335 /usr/include/sys/cdefs_aout.h:80:9: Warning: redefinition of __RCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
336 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
337 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
338 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
339 /usr/include/sys/cdefs_elf.h:117:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
340 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
341 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
342 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
343 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
344 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
345 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
346 /usr/include/sys/cdefs_aout.h:83:8: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
347 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
348 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
349 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
350 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
351 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
352 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
353 /usr/include/sys/cdefs_aout.h:83:7: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
354 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
355 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
356 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
357 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
358 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
359 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
360 /usr/include/sys/cdefs_aout.h:83:14: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
361 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
362 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
363 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
364 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
365 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
366 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
367 /usr/include/sys/cdefs_aout.h:83:23: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
368 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
369 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
370 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
371 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
372 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
373 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
374 /usr/include/sys/cdefs_aout.h:83:36: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
375 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
376 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
377 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
378 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
379 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
380 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
381 /usr/include/sys/cdefs_aout.h:83:41: Invalid character 92 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
382 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
383 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
384 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
385 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
386 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
387 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
388 /usr/include/sys/cdefs_aout.h:83:42: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
389 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
390 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
391 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
392 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
393 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
394 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
395 /usr/include/sys/cdefs_aout.h:83:45: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
396 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
397 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
398 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
399 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
400 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
401 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
402 /usr/include/sys/cdefs_aout.h:83:48: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
403 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
404 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
405 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
406 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
407 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
408 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
409 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
410 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
411 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
412 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
413 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
414 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
415 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
416 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
417 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
418 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
419 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
420 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
421 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
422 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
423 /usr/include/sys/cdefs_aout.h:95:9: Warning: redefinition of __KERNEL_SCCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
424 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
425 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
426 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
427 /usr/include/sys/cdefs_elf.h:123:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
428 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
429 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
430 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
431 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
432 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
433 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
434 /usr/include/sys/cdefs_aout.h:110:9: Redefinition of __link_set_add_data is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
435 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
436 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
437 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
438 /usr/include/sys/cdefs_elf.h:142:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
439 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
440 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
441 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
442 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
443 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
444 /usr/include/sys/cdefs.h:71:9: Warning: redefinition of __BEGIN_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
445 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
446 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
447 /usr/include/sys/cdefs.h:71:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
448 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
449 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
450 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
451 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
452 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
453 /usr/include/sys/cdefs.h:72:9: Warning: redefinition of __END_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
454 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
455 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
456 /usr/include/sys/cdefs.h:72:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
457 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
458 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
459 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
460 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
461 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
462 /usr/include/sys/cdefs.h:76:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
463 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
464 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
465 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
466 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
467 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
468 /usr/include/sys/cdefs.h:76:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
469 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
470 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
471 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
472 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
473 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
474 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
475 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
476 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
477 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
478 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
479 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
480 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
481 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
482 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
483 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
484 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
485 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
486 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
487 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
488 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
489 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
490 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
491 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
492 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
493 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
494 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
495 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
496 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
497 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
498 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
499 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
500 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
501 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
502 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
503 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
504 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
505 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
506 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
507 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
508 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
509 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
510 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
511 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
512 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
513 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
514 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
515 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
516 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
517 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
518 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
519 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
520 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
521 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
522 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
523 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
524 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
525 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
526 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
527 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
528 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
529 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
530 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
531 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
532 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
533 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
534 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
535 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
536 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
537 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
538 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
539 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
540 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
541 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
542 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
543 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
544 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
545 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
546 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
547 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
548 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
549 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
550 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
551 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
552 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
553 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
554 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
555 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
556 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
557 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
558 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
559 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
560 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
561 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
562 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
563 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
564 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
565 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
566 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
567 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
568 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
569 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
570 /usr/include/sys/cdefs.h:77:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
571 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
572 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
573 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
574 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
575 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
576 /usr/include/sys/cdefs.h:78:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
577 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
578 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
579 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
580 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
581 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
582 /usr/include/sys/cdefs.h:78:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
583 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
584 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
585 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
586 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
587 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
588 /usr/include/sys/cdefs.h:78:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
589 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
590 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
591 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
592 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
593 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
594 /usr/include/sys/cdefs.h:78:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
595 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
596 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
597 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
598 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
599 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
600 /usr/include/sys/cdefs.h:78:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
601 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
602 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
603 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
604 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
605 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
606 /usr/include/sys/cdefs.h:78:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
607 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
608 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
609 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
610 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
611 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
612 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
613 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
614 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
615 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
616 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
617 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
618 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
619 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
620 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
621 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
622 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
623 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
624 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
625 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
626 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
627 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
628 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
629 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
630 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
631 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
632 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
633 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
634 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
635 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
636 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
637 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
638 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
639 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
640 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
641 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
642 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
643 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
644 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
645 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
646 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
647 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
648 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
649 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
650 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
651 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
652 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
653 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
654 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
655 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
656 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
657 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
658 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
659 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
660 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
661 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
662 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
663 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
664 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
665 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
666 /usr/include/sys/cdefs.h:81:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
667 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
668 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
669 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
670 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
671 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
672 /usr/include/sys/cdefs.h:82:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
673 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
674 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
675 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
676 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
677 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
678 /usr/include/sys/cdefs.h:82:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
679 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
680 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
681 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
682 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
683 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
684 /usr/include/sys/cdefs.h:106:9: Warning: redefinition of __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
685 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
686 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
687 /usr/include/sys/cdefs.h:106:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
688 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
689 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
690 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
691 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
692 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
693 /usr/include/sys/cdefs.h:109:9: Warning: redefinition of __const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
694 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
695 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
696 /usr/include/sys/cdefs.h:109:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
697 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
698 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
699 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
700 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
701 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
702 /usr/include/sys/cdefs.h:110:9: Warning: redefinition of __inline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
703 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
704 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
705 /usr/include/sys/cdefs.h:110:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
706 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
707 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
708 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
709 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
710 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
711 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
712 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
713 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
714 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
715 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
716 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
717 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
718 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
719 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
720 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
721 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
722 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
723 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
724 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
725 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
726 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
727 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
728 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
729 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
730 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
731 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
732 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
733 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
734 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
735 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
736 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
737 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
738 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
739 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
740 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
741 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
742 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
743 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
744 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
745 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
746 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
747 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
748 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
749 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
750 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
751 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
752 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
753 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
754 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
755 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
756 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
757 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
758 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
759 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
760 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
761 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
762 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
763 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
764 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
765 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
766 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
767 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
768 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
769 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
770 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
771 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
772 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
773 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
774 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
775 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
776 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
777 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
778 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
779 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
780 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
781 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
782 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
783 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
784 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
785 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
786 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
787 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
788 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
789 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
790 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
791 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
792 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
793 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
794 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
795 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
796 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
797 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
798 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
799 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
800 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
801 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
802 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
803 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
804 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
805 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
806 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
807 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
808 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
809 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
810 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
811 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
812 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
813 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
814 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
815 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
816 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
817 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
818 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
819 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
820 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
821 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
822 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
823 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
824 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
825 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
826 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
827 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
828 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
829 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
830 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
831 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
832 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
833 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
834 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
835 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
836 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
837 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
838 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
839 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
840 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
841 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
842 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
843 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
844 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
845 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
846 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
847 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
848 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
849 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
850 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
851 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
852 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
853 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
854 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
855 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
856 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
857 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
858 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
859 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
860 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
861 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
862 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
863 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
864 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
865 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
866 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
867 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
868 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
869 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
870 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
871 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
872 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
873 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
874 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
875 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
876 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
877 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
878 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
879 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
880 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
881 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
882 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
883 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
884 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
885 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
886 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
887 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
888 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
889 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
890 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
891 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
892 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
893 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
894 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
895 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
896 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
897 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
898 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
899 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
900 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
901 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
902 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
903 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
904 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
905 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
906 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
907 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
908 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
909 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
910 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
911 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
912 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
913 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
914 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
915 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
916 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
917 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
918 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
919 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
920 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
921 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
922 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
923 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
924 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
925 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
926 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
927 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
928 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
929 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
930 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
931 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
932 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
933 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
934 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
935 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
936 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
937 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
938 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
939 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
940 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
941 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
942 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
943 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
944 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
945 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
946 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
947 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
948 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
949 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
950 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
951 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
952 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
953 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
954 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
955 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
956 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
957 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
958 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
959 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
960 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
961 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
962 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
963 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
964 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
965 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
966 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
967 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
968 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
969 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
970 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
971 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
972 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
973 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
974 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
975 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
976 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
977 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
978 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
979 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
980 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
981 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
982 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
983 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
984 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
985 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
986 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
987 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
988 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
989 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
990 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
991 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
992 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
993 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
994 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
995 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
996 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
997 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
998 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
999 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1000 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1001 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1002 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1003 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1004 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1005 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1006 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1007 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1008 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1009 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1010 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1011 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1012 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1013 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1014 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1015 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1016 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1017 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1018 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1019 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1020 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1021 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1022 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1023 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1024 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1025 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1026 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1027 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1028 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1029 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1030 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1031 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1032 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1033 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1034 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1035 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1036 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1037 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1038 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1039 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1040 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1041 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1042 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1043 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1044 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1045 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1046 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1047 /usr/include/sys/cdefs.h:122:9: Warning: redefinition of const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1048 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1049 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1050 /usr/include/sys/cdefs.h:122:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1051 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1052 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1053 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1054 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1055 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1056 /usr/include/sys/cdefs.h:124:9: Warning: redefinition of signed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1057 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1058 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1059 /usr/include/sys/cdefs.h:124:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1060 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1061 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1062 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1063 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1064 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1065 /usr/include/sys/cdefs.h:129:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1066 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1067 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1068 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1069 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1070 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1071 /usr/include/sys/cdefs.h:129:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1072 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1073 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1074 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1075 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1076 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1077 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1078 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1079 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1080 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1081 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1082 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1083 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1084 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1085 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1086 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1087 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1088 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1089 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1090 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1091 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1092 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1093 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1094 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1095 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1096 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1097 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1098 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1099 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1100 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1101 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1102 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1103 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1104 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1105 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1106 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1107 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1108 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1109 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1110 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1111 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1112 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1113 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1114 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1115 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1116 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1117 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1118 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1119 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1120 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1121 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1122 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1123 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1124 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1125 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1126 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1127 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1128 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1129 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1130 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1131 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1132 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1133 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1134 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1135 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1136 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1137 /usr/include/sys/cdefs.h:130:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1138 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1139 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1140 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1141 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1142 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1143 /usr/include/sys/cdefs.h:131:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1144 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1145 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1146 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1147 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1148 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1149 /usr/include/sys/cdefs.h:131:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1150 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1151 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1152 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1153 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1154 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1155 /usr/include/sys/cdefs.h:135:9: Warning: redefinition of __aconst
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1156 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1157 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1158 /usr/include/sys/cdefs.h:135:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1159 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1160 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1161 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1162 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1163 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1164 /usr/include/sys/cdefs.h:138:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1165 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1166 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1167 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1168 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1169 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1170 /usr/include/sys/cdefs.h:138:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1171 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1172 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1173 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1174 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1175 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1176 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1177 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1178 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1179 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1180 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1181 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1182 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1183 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1184 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1185 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1186 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1187 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1188 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1189 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1190 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1191 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1192 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1193 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1194 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1195 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1196 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1197 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1198 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1199 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1200 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1201 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1202 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1203 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1204 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1205 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1206 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1207 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1208 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1209 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1210 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1211 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1212 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1213 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1214 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1215 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1216 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1217 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1218 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1219 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1220 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1221 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1222 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1223 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1224 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1225 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1226 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1227 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1228 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1229 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1230 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1231 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1232 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1233 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1234 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1235 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1236 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1237 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1238 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1239 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1240 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1241 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1242 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1243 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1244 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1245 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1246 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1247 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1248 /usr/include/sys/cdefs.h:139:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1249 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1250 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1251 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1252 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1253 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1254 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1255 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1256 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1257 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1258 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1259 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1260 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1261 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1262 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1263 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1264 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1265 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1266 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1267 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1268 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1269 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1270 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1271 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1272 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1273 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1274 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1275 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1276 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1277 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1278 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1279 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1280 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1281 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1282 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1283 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1284 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1285 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1286 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1287 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1288 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1289 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1290 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1291 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1292 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1293 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1294 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1295 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1296 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1297 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1298 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1299 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1300 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1301 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1302 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1303 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1304 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1305 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1306 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1307 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1308 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1309 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1310 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1311 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1312 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1313 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1314 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1315 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1316 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1317 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1318 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1319 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1320 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1321 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1322 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1323 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1324 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1325 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1326 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1327 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1328 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1329 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1330 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1331 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1332 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1333 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1334 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1335 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1336 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1337 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1338 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1339 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1340 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1341 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1342 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1343 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1344 /usr/include/sys/cdefs.h:140:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1345 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1346 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1347 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1348 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1349 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1350 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1351 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1352 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1353 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1354 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1355 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1356 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1357 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1358 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1359 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1360 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1361 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1362 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1363 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1364 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1365 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1366 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1367 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1368 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1369 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1370 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1371 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1372 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1373 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1374 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1375 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1376 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1377 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1378 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1379 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1380 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1381 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1382 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1383 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1384 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1385 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1386 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1387 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1388 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1389 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1390 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1391 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1392 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1393 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1394 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1395 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1396 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1397 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1398 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1399 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1400 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1401 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1402 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1403 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1404 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1405 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1406 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1407 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1408 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1409 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1410 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1411 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1412 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1413 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1414 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1415 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1416 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1417 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1418 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1419 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1420 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1421 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1422 /usr/include/sys/cdefs.h:141:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1423 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1424 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1425 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1426 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1427 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1428 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1429 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1430 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1431 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1432 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1433 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1434 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1435 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1436 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1437 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1438 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1439 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1440 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1441 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1442 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1443 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1444 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1445 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1446 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1447 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1448 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1449 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1450 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1451 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1452 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1453 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1454 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1455 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1456 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1457 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1458 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1459 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1460 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1461 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1462 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1463 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1464 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1465 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1466 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1467 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1468 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1469 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1470 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1471 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1472 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1473 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1474 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1475 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1476 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1477 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1478 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1479 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1480 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1481 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1482 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1483 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1484 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1485 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1486 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1487 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1488 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1489 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1490 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1491 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1492 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1493 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1494 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1495 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1496 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1497 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1498 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1499 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1500 /usr/include/sys/cdefs.h:142:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1501 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1502 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1503 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1504 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1505 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1506 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1507 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1508 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1509 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1510 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1511 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1512 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1513 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1514 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1515 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1516 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1517 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1518 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1519 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1520 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1521 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1522 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1523 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1524 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1525 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1526 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1527 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1528 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1529 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1530 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1531 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1532 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1533 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1534 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1535 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1536 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1537 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1538 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1539 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1540 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1541 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1542 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1543 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1544 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1545 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1546 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1547 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1548 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1549 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1550 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1551 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1552 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1553 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1554 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1555 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1556 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1557 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1558 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1559 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1560 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1561 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1562 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1563 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1564 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1565 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1566 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1567 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1568 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1569 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1570 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1571 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1572 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1573 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1574 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1575 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1576 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1577 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1578 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1579 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1580 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1581 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1582 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1583 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1584 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1585 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1586 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1587 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1588 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1589 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1590 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1591 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1592 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1593 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1594 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1595 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1596 /usr/include/sys/cdefs.h:143:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1597 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1598 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1599 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1600 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1601 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1602 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1603 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1604 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1605 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1606 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1607 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1608 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1609 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1610 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1611 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1612 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1613 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1614 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1615 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1616 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1617 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1618 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1619 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1620 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1621 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1622 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1623 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1624 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1625 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1626 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1627 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1628 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1629 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1630 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1631 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1632 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1633 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1634 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1635 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1636 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1637 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1638 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1639 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1640 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1641 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1642 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1643 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1644 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1645 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1646 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1647 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1648 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1649 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1650 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1651 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1652 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1653 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1654 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1655 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1656 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1657 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1658 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1659 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1660 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1661 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1662 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1663 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1664 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1665 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1666 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1667 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1668 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1669 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1670 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1671 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1672 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1673 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1674 /usr/include/sys/cdefs.h:144:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1675 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1676 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1677 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1678 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1679 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1680 /usr/include/sys/cdefs.h:145:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1681 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1682 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1683 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1684 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1685 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1686 /usr/include/sys/cdefs.h:145:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1687 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1688 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1689 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1690 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1691 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1692 /usr/include/sys/cdefs.h:145:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1693 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1694 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1695 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1696 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1697 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1698 /usr/include/sys/cdefs.h:146:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1699 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1700 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1701 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1702 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1703 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1704 /usr/include/sys/cdefs.h:146:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1705 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1706 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1707 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1708 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1709 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1710 /usr/include/sys/cdefs.h:147:9: Warning: redefinition of __UNCONST
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1711 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1712 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1713 /usr/include/sys/cdefs.h:147:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1714 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1715 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1716 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1717 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1718 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1719 /usr/include/sys/cdefs.h:149:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1720 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1721 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1722 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1723 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1724 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1725 /usr/include/sys/cdefs.h:149:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1726 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1727 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1728 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1729 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1730 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1731 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1732 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1733 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1734 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1735 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1736 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1737 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1738 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1739 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1740 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1741 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1742 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1743 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1744 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1745 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1746 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1747 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1748 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1749 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1750 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1751 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1752 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1753 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1754 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1755 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1756 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1757 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1758 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1759 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1760 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1761 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1762 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1763 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1764 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1765 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1766 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1767 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1768 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1769 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1770 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1771 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1772 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1773 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1774 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1775 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1776 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1777 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1778 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1779 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1780 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1781 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1782 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1783 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1784 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1785 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1786 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1787 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1788 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1789 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1790 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1791 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1792 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1793 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1794 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1795 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1796 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1797 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1798 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1799 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1800 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1801 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1802 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1803 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1804 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1805 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1806 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1807 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1808 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1809 /usr/include/sys/cdefs.h:150:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1810 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1811 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1812 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1813 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1814 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1815 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1816 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1817 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1818 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1819 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1820 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1821 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1822 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1823 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1824 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1825 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1826 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1827 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1828 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1829 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1830 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1831 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1832 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1833 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1834 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1835 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1836 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1837 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1838 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1839 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1840 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1841 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1842 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1843 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1844 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1845 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1846 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1847 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1848 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1849 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1850 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1851 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1852 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1853 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1854 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1855 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1856 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1857 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1858 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1859 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1860 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1861 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1862 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1863 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1864 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1865 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1866 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1867 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1868 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1869 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1870 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1871 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1872 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1873 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1874 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1875 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1876 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1877 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1878 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1879 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1880 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1881 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1882 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1883 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1884 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1885 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1886 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1887 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1888 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1889 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1890 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1891 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1892 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1893 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1894 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1895 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1896 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1897 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1898 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1899 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1900 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1901 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1902 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1903 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1904 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1905 /usr/include/sys/cdefs.h:151:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1906 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1907 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1908 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1909 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1910 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1911 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1912 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1913 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1914 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1915 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1916 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1917 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1918 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1919 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1920 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1921 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1922 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1923 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1924 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1925 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1926 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1927 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1928 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1929 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1930 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1931 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1932 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1933 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1934 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1935 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1936 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1937 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1938 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1939 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1940 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1941 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1942 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1943 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1944 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1945 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1946 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1947 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1948 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1949 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1950 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1951 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1952 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1953 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1954 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1955 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1956 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1957 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1958 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1959 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1960 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1961 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1962 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1963 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1964 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1965 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1966 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1967 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1968 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1969 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1970 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1971 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1972 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1973 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1974 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1975 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1976 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1977 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1978 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1979 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1980 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1981 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1982 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1983 /usr/include/sys/cdefs.h:152:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1984 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1985 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1986 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1987 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1988 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1989 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1990 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1991 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1992 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1993 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1994 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1995 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1996 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1997 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1998 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1999 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2000 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2001 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2002 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2003 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2004 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2005 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2006 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2007 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2008 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2009 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2010 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2011 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2012 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2013 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2014 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2015 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2016 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2017 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2018 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2019 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2020 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2021 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2022 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2023 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2024 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2025 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2026 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2027 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2028 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2029 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2030 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2031 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2032 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2033 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2034 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2035 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2036 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2037 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2038 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2039 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2040 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2041 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2042 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2043 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2044 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2045 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2046 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2047 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2048 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2049 /usr/include/sys/cdefs.h:153:1: Expected arguments for macro __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2050
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2051
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2052 ";
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2053 * unfortunately, these then cause warnings under "-ansi -pedantic".
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2054 * GCC2 uses a new, peculiar __attribute__((attrs)) style. All of
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2055 * these work for GNU C++ (modulo a slight glitch in the C++ grammar
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2056 * in the distribution version of 2.5.5).
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2057 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2058 * GCC defines a pure function as depending only on its arguments and
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2059 * global variables. Typical examples are strlen and sqrt.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2060 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2061 * GCC defines a function as depending only on its arguments.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2062 * Therefore calling a function again with identical arguments
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2063 * will always produce the same result.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2064 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2065 * Rounding modes for floating point operations are considered global
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2066 * variables and prevent sqrt from being a function.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2067 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2068 * Calls to functions can be optimised away and moved around
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2069 * without limitations.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2070 */
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2071 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2072 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2073 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2074 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2075 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2076 /usr/include/sys/cdefs.h:196:9: Warning: redefinition of __dead
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2077 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2078 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2079 /usr/include/sys/cdefs.h:196:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2080 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2081 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2082 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2083 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2084 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2085 /usr/include/sys/cdefs.h:210:9: Warning: redefinition of __constfunc
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2086 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2087 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2088 /usr/include/sys/cdefs.h:210:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2089 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2090 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2091 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2092 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2093 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2094 /usr/include/sys/cdefs.h:216:9: Warning: redefinition of __noinline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2095 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2096 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2097 /usr/include/sys/cdefs.h:216:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2098 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2099 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2100 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2101 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2102 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2103 /usr/include/sys/cdefs.h:244:9: Warning: redefinition of __packed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2104 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2105 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2106 /usr/include/sys/cdefs.h:244:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2107 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2108 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2109 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2110 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2111 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2112 /usr/include/sys/cdefs.h:245:9: Warning: redefinition of __aligned
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2113 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2114 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2115 /usr/include/sys/cdefs.h:245:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2116
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2117 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2118 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2119 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2120 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2121 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2122 /usr/include/sys/cdefs.h:255:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2123
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2124 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2125 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2126 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2127 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2128 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2129 /usr/include/sys/cdefs.h:265:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2130 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2131 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2132 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2133 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2134 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2135 /usr/include/sys/cdefs.h:289:2: #error: "No function renaming possible"
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2136
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2137
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2138 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2139 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2140 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2141 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2142 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2143 /usr/include/sys/cdefs.h:339:9: Warning: redefinition of __predict_true
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2144 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2145 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2146 /usr/include/sys/cdefs.h:339:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2147 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2148 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2149 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2150 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2151 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2152 /usr/include/sys/cdefs.h:340:9: Warning: redefinition of __predict_false
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2153 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2154 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2155 /usr/include/sys/cdefs.h:340:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2156
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2157 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2158 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2159 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2160 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2161 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2162 /usr/include/sys/cdefs.h:358:9: Warning: redefinition of __format_arg
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2163 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2164 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2165 /usr/include/sys/cdefs.h:358:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2166 * __link_set_##set##_sym_##sym = &sym; __asm(".stabs \"___link_set_" #set "\", " #23 ", 0, 0, _" #sym)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2167 * Add a reference to the .text symbol `sym' to `set'.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2168 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2169 * static void * __link_set_##set##_sym_##sym = &sym; __asm(".stabs \"___link_set_" #set "\", " #23 ", 0, 0, _" #sym)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2170 * Add a reference to the .rodata symbol `sym' to `set'.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2171 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2172 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2173 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2174 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2175 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2176 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2177 /usr/include/sys/cdefs.h:373:1: Wrong number of arguments for macro __link_set_make_entry; found 2, expected 3
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2178 * static void * __link_set_##set##_sym_##sym = &sym; __asm(".stabs \"___link_set_" #set "\", " # ", 0, 0, _" #sym)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2179 * Add a reference to the .data symbol `sym' to `set'.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2180 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2181 * static void * __link_set_##set##_sym_##sym = &sym; __asm(".stabs \"___link_set_" #set "\", " #27 ", 0, 0, _" #sym)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2182 * Add a reference to the .bss symbol `sym' to `set'.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2183 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2184 * extern struct { int __ls_length; ptype *__ls_items[1]; } __link_set_##set
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2185 * Provide an extern declaration of the set `set', which
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2186 * contains an array of the pointer type `ptype'. This
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2187 * macro must be used by any code which wishes to reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2188 * the elements of a link set.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2189 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2190 * (&(__link_set_##set).__ls_items[0])
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2191 * This points to the first slot in the link set.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2192 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2193 * (&(__link_set_##set).__ls_items[(__link_set_##set).__ls_length])
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2194 * This points to the (non-existent) slot after the last
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2195 * entry in the link set.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2196 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2197 * ((__link_set_##set).__ls_length)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2198 * Count the number of entries in link set `set'.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2199 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2200 * In addition, we provide the following macros for accessing link sets:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2201 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2202 * for (pvar = (&(__link_set_##set).__ls_items[0]); pvar < (&(__link_set_##set).__ls_items[(__link_set_##set).__ls_length]); pvar++)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2203 * Iterate over the link set `set'. Because a link set is
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2204 * an array of pointers, pvar must be declared as "type **pvar",
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2205 * and the actual entry accessed as "*pvar".
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2206 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2207 * (__link_set_begin(set)[idx])
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2208 * Access the link set entry at index `idx' from set `set'.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2209 */
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2210 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2211 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2212 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2213 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2214 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2215 /usr/include/sys/cdefs.h:405:9: Warning: redefinition of __link_set_foreach
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2216 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2217 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2218 /usr/include/sys/cdefs.h:405:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2219 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2220 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2221 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2222 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2223 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2224 /usr/include/sys/cdefs.h:408:9: Warning: redefinition of __link_set_entry
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2225 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2226 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2227 /usr/include/sys/cdefs.h:408:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2228
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2229 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2230 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2231 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2232 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2233 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2234 /usr/include/sys/cdefs.h:414:9: Warning: redefinition of __arraycount
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2235 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2236 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2237 /usr/include/sys/cdefs.h:414:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2238
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2239 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2240 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2241 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2242 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2243 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2244 /usr/include/sys/cdefs.h:417:9: Warning: redefinition of __BIT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2245 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2246 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2247 /usr/include/sys/cdefs.h:417:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2248
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2249 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2250 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2251 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2252 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2253 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2254 /usr/include/sys/cdefs.h:421:9: Warning: redefinition of __BITS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2255 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2256 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2257 /usr/include/sys/cdefs.h:421:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2258
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2259 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2260 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2261 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2262 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2263 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2264 /usr/include/sys/cdefs.h:425:9: Warning: redefinition of __LOWEST_SET_BIT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2265 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2266 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2267 /usr/include/sys/cdefs.h:425:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2268 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2269 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2270 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2271 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2272 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2273 /usr/include/sys/cdefs.h:427:9: Warning: redefinition of __PRIuBIT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2274 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2275 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2276 /usr/include/sys/cdefs.h:427:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2277 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2278 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2279 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2280 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2281 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2282 /usr/include/sys/cdefs.h:428:9: Warning: redefinition of __PRIuBITS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2283 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2284 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2285 /usr/include/sys/cdefs.h:428:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2286 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2287 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2288 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2289 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2290 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2291 /usr/include/sys/cdefs.h:430:9: Warning: redefinition of __PRIxBIT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2292 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2293 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2294 /usr/include/sys/cdefs.h:430:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2295 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2296 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2297 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2298 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2299 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2300 /usr/include/sys/cdefs.h:431:9: Warning: redefinition of __PRIxBITS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2301 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2302 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2303 /usr/include/sys/cdefs.h:431:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2304 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2305 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2306 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2307 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2308 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2309 /usr/include/sys/cdefs.h:433:9: Warning: redefinition of __SHIFTOUT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2310 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2311 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2312 /usr/include/sys/cdefs.h:433:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2313 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2314 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2315 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2316 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2317 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2318 /usr/include/sys/cdefs.h:434:9: Warning: redefinition of __SHIFTIN
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2319 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2320 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2321 /usr/include/sys/cdefs.h:434:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2322 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2323 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2324 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2325 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2326 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2327 /usr/include/sys/cdefs.h:435:9: Warning: redefinition of __SHIFTOUT_MASK
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2328 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2329 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2330 /usr/include/sys/cdefs.h:435:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2331
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2332 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2333 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2334 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2335 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2336 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2337 /usr/include/sys/cdefs.h:444:9: Warning: redefinition of __CAST
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2338 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2339 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2340 /usr/include/sys/cdefs.h:444:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2341
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2342
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2343
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2344
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2345
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2346
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2347 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2348 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2349 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2350 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2351 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2352 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2353 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2354 /usr/include/sys/cdefs.h:56:9: Warning: redefinition of __GNUC_PREREQ__
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2355 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2356 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2357 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2358 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2359 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2360 /usr/include/sys/cdefs.h:56:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2361
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2362
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2363 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2364 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2365 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2366 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2367 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2368 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2369 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2370 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2371 /usr/include/sys/cdefs_aout.h:17:9: Warning: redefinition of ___RENAME
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2372 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2373 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2374 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2375 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2376 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2377 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2378 /usr/include/sys/cdefs_aout.h:17:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2379 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2380 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2381 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2382 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2383 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2384 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2385 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2386 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2387 /usr/include/sys/cdefs_aout.h:18:9: Warning: redefinition of ____RENAME
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2388 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2389 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2390 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2391 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2392 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2393 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2394 /usr/include/sys/cdefs_aout.h:18:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2395 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2396 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2397 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2398 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2399 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2400 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2401 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2402 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2403 /usr/include/sys/cdefs_aout.h:39:9: Warning: redefinition of __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2404 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2405 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2406 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2407 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2408 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2409 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2410 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2411 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2412 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2413 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2414 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2415 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2416 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2417 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2418 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2419 /usr/include/sys/cdefs_aout.h:46:9: Warning: redefinition of __weak_alias
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2420 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2421 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2422 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2423 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2424 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2425 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2426 /usr/include/sys/cdefs_aout.h:46:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2427 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2428 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2429 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2430 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2431 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2432 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2433 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2434 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2435 /usr/include/sys/cdefs_aout.h:47:9: Warning: redefinition of ___weak_alias
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2436 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2437 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2438 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2439 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2440 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2441 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2442 /usr/include/sys/cdefs_aout.h:47:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2443 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2444 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2445 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2446 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2447 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2448 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2449 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2450 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2451 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2452 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2453 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2454 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2455 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2456 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2457 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2458 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2459 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2460 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2461 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2462 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2463 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2464 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2465 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2466 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2467 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2468 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2469 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2470 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2471 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2472 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2473 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2474 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2475 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2476 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2477 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2478 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2479 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2480 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2481 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2482 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2483 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2484 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2485 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2486 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2487 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2488 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2489 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2490 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2491 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2492 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2493 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2494 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2495 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2496 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2497 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2498 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2499 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2500 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2501 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2502 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2503 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2504 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2505 /usr/include/sys/cdefs_aout.h:50:9: Warning: redefinition of __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2506 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2507 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2508 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2509 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2510 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2511 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2512 /usr/include/sys/cdefs_aout.h:50:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2513 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2514 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2515 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2516 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2517 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2518 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2519 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2520 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2521 /usr/include/sys/cdefs_aout.h:51:9: Warning: redefinition of ___weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2522 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2523 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2524 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2525 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2526 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2527 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2528 /usr/include/sys/cdefs_aout.h:51:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2529 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2530 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2531 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2532 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2533 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2534 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2535 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2536 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2537 /usr/include/sys/cdefs_aout.h:57:9: Warning: redefinition of ___weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2538 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2539 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2540 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2541 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2542 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2543 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2544 /usr/include/sys/cdefs_aout.h:57:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2545 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2546 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2547 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2548 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2549 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2550 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2551 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2552 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2553 /usr/include/sys/cdefs_aout.h:58:9: Redefinition of __weak_reference is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2554 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2555 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2556 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2557 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2558 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2559 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2560 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2561 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2562 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2563 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2564 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2565 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2566 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2567 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2568 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2569 /usr/include/sys/cdefs_aout.h:61:9: Warning: redefinition of __warn_references
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2570 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2571 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2572 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2573 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2574 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2575 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2576 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2577 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2578 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2579 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2580 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2581 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2582 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2583 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2584 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2585 /usr/include/sys/cdefs_aout.h:66:9: Redefinition of __warn_references is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2586 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2587 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2588 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2589 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2590 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2591 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2592 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2593 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2594 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2595 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2596 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2597 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2598 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2599 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2600 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2601 /usr/include/sys/cdefs_aout.h:69:9: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2602 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2603 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2604 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2605 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2606 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2607 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2608 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2609 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2610 /usr/include/sys/cdefs_aout.h:69:8: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2611 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2612 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2613 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2614 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2615 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2616 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2617 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2618 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2619 /usr/include/sys/cdefs_aout.h:69:15: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2620 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2621 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2622 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2623 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2624 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2625 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2626 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2627 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2628 /usr/include/sys/cdefs_aout.h:69:18: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2629 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2630 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2631 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2632 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2633 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2634 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2635 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2636 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2637 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2638 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2639 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2640 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2641 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2642 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2643 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2644 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2645 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2646 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2647 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2648 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2649 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2650 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2651 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2652 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2653 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2654 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2655 /usr/include/sys/cdefs_aout.h:83:8: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2656 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2657 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2658 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2659 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2660 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2661 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2662 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2663 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2664 /usr/include/sys/cdefs_aout.h:83:7: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2665 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2666 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2667 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2668 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2669 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2670 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2671 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2672 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2673 /usr/include/sys/cdefs_aout.h:83:14: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2674 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2675 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2676 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2677 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2678 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2679 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2680 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2681 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2682 /usr/include/sys/cdefs_aout.h:83:23: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2683 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2684 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2685 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2686 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2687 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2688 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2689 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2690 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2691 /usr/include/sys/cdefs_aout.h:83:36: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2692 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2693 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2694 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2695 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2696 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2697 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2698 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2699 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2700 /usr/include/sys/cdefs_aout.h:83:41: Invalid character 92 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2701 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2702 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2703 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2704 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2705 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2706 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2707 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2708 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2709 /usr/include/sys/cdefs_aout.h:83:42: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2710 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2711 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2712 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2713 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2714 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2715 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2716 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2717 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2718 /usr/include/sys/cdefs_aout.h:83:45: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2719 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2720 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2721 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2722 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2723 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2724 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2725 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2726 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2727 /usr/include/sys/cdefs_aout.h:83:48: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2728 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2729 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2730 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2731 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2732 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2733 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2734 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2735 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2736 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2737 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2738 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2739 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2740 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2741 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2742 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2743 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2744 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2745 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2746 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2747 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2748 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2749 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2750 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2751 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2752 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2753 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2754 /usr/include/sys/cdefs_aout.h:86:9: Warning: redefinition of __COPYRIGHT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2755 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2756 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2757 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2758 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2759 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2760 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2761 /usr/include/sys/cdefs_aout.h:86:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2762 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2763 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2764 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2765 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2766 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2767 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2768 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2769 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2770 /usr/include/sys/cdefs_aout.h:93:9: Warning: redefinition of __KERNEL_RCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2771 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2772 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2773 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2774 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2775 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2776 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2777 /usr/include/sys/cdefs_aout.h:93:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2778 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2779 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2780 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2781 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2782 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2783 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2784 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2785 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2786 /usr/include/sys/cdefs_aout.h:99:9: Warning: redefinition of __link_set_make_entry
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2787 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2788 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2789 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2790 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2791 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2792 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2793 /usr/include/sys/cdefs_aout.h:99:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2794 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2795 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2796 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2797 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2798 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2799 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2800 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2801 /usr/include/sys/cdefs.h:71:9: Warning: redefinition of __BEGIN_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2802 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2803 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2804 /usr/include/sys/cdefs.h:71:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2805 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2806 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2807 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2808 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2809 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2810 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2811 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2812 /usr/include/sys/cdefs.h:72:9: Warning: redefinition of __END_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2813 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2814 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2815 /usr/include/sys/cdefs.h:72:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2816 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2817 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2818 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2819 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2820 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2821 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2822 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2823 /usr/include/sys/cdefs.h:73:9: Warning: redefinition of __static_cast
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2824 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2825 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2826 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2827 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2828 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2829 /usr/include/sys/cdefs.h:73:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2830 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2831 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2832 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2833 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2834 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2835 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2836 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2837 /usr/include/sys/cdefs.h:104:9: Warning: redefinition of __P
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2838 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2839 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2840 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2841 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2842 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2843 /usr/include/sys/cdefs.h:104:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2844 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2845 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2846 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2847 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2848 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2849 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2850 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2851 /usr/include/sys/cdefs.h:105:9: Warning: redefinition of __CONCAT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2852 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2853 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2854 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2855 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2856 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2857 /usr/include/sys/cdefs.h:105:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2858 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2859 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2860 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2861 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2862 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2863 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2864 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2865 /usr/include/sys/cdefs.h:106:9: Warning: redefinition of __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2866 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2867 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2868 /usr/include/sys/cdefs.h:106:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2869 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2870 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2871 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2872 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2873 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2874 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2875 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2876 /usr/include/sys/cdefs.h:109:9: Warning: redefinition of __const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2877 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2878 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2879 /usr/include/sys/cdefs.h:109:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2880 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2881 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2882 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2883 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2884 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2885 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2886 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2887 /usr/include/sys/cdefs.h:110:9: Warning: redefinition of __inline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2888 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2889 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2890 /usr/include/sys/cdefs.h:110:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2891 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2892 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2893 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2894 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2895 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2896 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2897 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2898 /usr/include/sys/cdefs.h:111:9: Warning: redefinition of __signed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2899 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2900 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2901 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2902 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2903 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2904 /usr/include/sys/cdefs.h:111:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2905 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2906 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2907 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2908 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2909 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2910 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2911 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2912 /usr/include/sys/cdefs.h:112:9: Warning: redefinition of __volatile
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2913 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2914 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2915 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2916 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2917 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2918 /usr/include/sys/cdefs.h:112:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2919 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2920 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2921 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2922 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2923 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2924 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2925 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2926 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2927 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2928 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2929 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2930 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2931 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2932 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2933 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2934 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2935 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2936 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2937 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2938 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2939 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2940 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2941 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2942 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2943 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2944 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2945 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2946 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2947 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2948 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2949 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2950 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2951 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2952 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2953 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2954 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2955 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2956 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2957 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2958 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2959 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2960 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2961 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2962 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2963 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2964 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2965 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2966 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2967 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2968 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2969 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2970 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2971 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2972 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2973 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2974 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2975 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2976 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2977 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2978 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2979 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2980 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2981 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2982 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2983 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2984 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2985 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2986 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2987 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2988 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2989 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2990 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2991 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2992 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2993 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2994 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2995 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2996 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2997 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2998 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2999 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3000 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3001 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3002 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3003 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3004 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3005 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3006 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3007 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3008 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3009 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3010 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3011 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3012 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3013 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3014 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3015 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3016 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3017 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3018 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3019 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3020 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3021 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3022 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3023 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3024 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3025 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3026 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3027 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3028 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3029 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3030 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3031 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3032 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3033 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3034 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3035 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3036 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3037 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3038 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3039 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3040 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3041 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3042 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3043 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3044 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3045 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3046 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3047 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3048 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3049 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3050 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3051 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3052 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3053 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3054 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3055 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3056 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3057 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3058 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3059 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3060 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3061 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3062 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3063 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3064 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3065 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3066 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3067 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3068 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3069 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3070 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3071 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3072 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3073 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3074 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3075 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3076 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3077 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3078 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3079 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3080 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3081 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3082 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3083 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3084 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3085 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3086 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3087 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3088 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3089 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3090 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3091 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3092 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3093 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3094 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3095 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3096 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3097 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3098 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3099 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3100 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3101 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3102 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3103 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3104 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3105 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3106 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3107 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3108 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3109 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3110 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3111 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3112 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3113 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3114 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3115 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3116 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3117 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3118 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3119 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3120 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3121 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3122 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3123 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3124 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3125 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3126 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3127 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3128 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3129 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3130 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3131 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3132 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3133 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3134 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3135 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3136 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3137 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3138 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3139 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3140 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3141 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3142 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3143 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3144 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3145 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3146 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3147 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3148 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3149 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3150 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3151 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3152 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3153 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3154 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3155 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3156 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3157 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3158 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3159 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3160 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3161 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3162 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3163 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3164 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3165 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3166 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3167 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3168 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3169 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3170 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3171 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3172 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3173 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3174 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3175 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3176 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3177 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3178 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3179 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3180 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3181 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3182 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3183 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3184 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3185 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3186 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3187 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3188 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3189 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3190 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3191 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3192 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3193 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3194 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3195 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3196 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3197 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3198 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3199 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3200 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3201 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3202 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3203 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3204 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3205 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3206 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3207 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3208 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3209 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3210 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3211 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3212 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3213 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3214 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3215 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3216 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3217 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3218 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3219 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3220 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3221 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3222 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3223 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3224 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3225 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3226 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3227 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3228 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3229 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3230 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3231 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3232 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3233 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3234 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3235 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3236 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3237 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3238 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3239 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3240 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3241 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3242 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3243 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3244 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3245 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3246 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3247 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3248 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3249 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3250 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3251 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3252 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3253 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3254 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3255 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3256 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3257 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3258 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3259 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3260 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3261 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3262 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3263 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3264 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3265 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3266 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3267 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3268 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3269 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3270 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3271 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3272 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3273 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3274 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3275 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3276 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3277 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3278 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3279 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3280 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3281 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3282 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3283 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3284 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3285 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3286 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3287 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3288 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3289 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3290 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3291 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3292 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3293 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3294 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3295 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3296 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3297 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3298 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3299 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3300 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3301 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3302 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3303 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3304 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3305 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3306 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3307 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3308 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3309 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3310 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3311 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3312 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3313 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3314 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3315 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3316 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3317 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3318 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3319 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3320 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3321 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3322 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3323 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3324 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3325 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3326 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3327 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3328 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3329 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3330 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3331 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3332 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3333 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3334 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3335 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3336 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3337 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3338 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3339 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3340 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3341 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3342 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3343 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3344 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3345 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3346 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3347 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3348 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3349 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3350 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3351 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3352 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3353 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3354 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3355 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3356 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3357 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3358 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3359 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3360 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3361 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3362 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3363 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3364 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3365 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3366 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3367 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3368 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3369 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3370 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3371 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3372 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3373 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3374 /usr/include/sys/cdefs.h:122:9: Warning: redefinition of const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3375 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3376 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3377 /usr/include/sys/cdefs.h:122:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3378 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3379 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3380 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3381 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3382 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3383 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3384 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3385 /usr/include/sys/cdefs.h:123:9: Warning: redefinition of inline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3386 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3387 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3388 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3389 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3390 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3391 /usr/include/sys/cdefs.h:123:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3392 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3393 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3394 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3395 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3396 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3397 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3398 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3399 /usr/include/sys/cdefs.h:124:9: Warning: redefinition of signed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3400 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3401 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3402 /usr/include/sys/cdefs.h:124:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3403 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3404 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3405 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3406 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3407 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3408 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3409 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3410 /usr/include/sys/cdefs.h:125:9: Warning: redefinition of volatile
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3411 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3412 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3413 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3414 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3415 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3416 /usr/include/sys/cdefs.h:125:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3417 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3418 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3419 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3420 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3421 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3422 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3423 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3424 /usr/include/sys/cdefs.h:135:9: Warning: redefinition of __aconst
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3425 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3426 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3427 /usr/include/sys/cdefs.h:135:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3428 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3429 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3430 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3431 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3432 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3433 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3434 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3435 /usr/include/sys/cdefs.h:196:9: Warning: redefinition of __dead
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3436 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3437 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3438 /usr/include/sys/cdefs.h:196:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3439 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3440 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3441 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3442 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3443 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3444 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3445 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3446 /usr/include/sys/cdefs.h:204:9: Warning: redefinition of __pure
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3447 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3448 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3449 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3450 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3451 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3452 /usr/include/sys/cdefs.h:204:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3453 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3454 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3455 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3456 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3457 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3458 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3459 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3460 /usr/include/sys/cdefs.h:210:9: Warning: redefinition of __constfunc
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3461 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3462 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3463 /usr/include/sys/cdefs.h:210:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3464 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3465 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3466 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3467 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3468 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3469 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3470 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3471 /usr/include/sys/cdefs.h:216:9: Warning: redefinition of __noinline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3472 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3473 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3474 /usr/include/sys/cdefs.h:216:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3475 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3476 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3477 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3478 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3479 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3480 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3481 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3482 /usr/include/sys/cdefs.h:222:9: Warning: redefinition of __unused
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3483 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3484 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3485 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3486 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3487 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3488 /usr/include/sys/cdefs.h:222:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3489 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3490 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3491 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3492 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3493 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3494 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3495 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3496 /usr/include/sys/cdefs.h:228:9: Warning: redefinition of __used
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3497 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3498 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3499 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3500 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3501 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3502 /usr/include/sys/cdefs.h:228:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3503 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3504 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3505 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3506 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3507 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3508 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3509 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3510 /usr/include/sys/cdefs.h:244:9: Warning: redefinition of __packed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3511 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3512 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3513 /usr/include/sys/cdefs.h:244:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3514 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3515 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3516 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3517 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3518 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3519 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3520 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3521 /usr/include/sys/cdefs.h:245:9: Warning: redefinition of __aligned
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3522 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3523 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3524 /usr/include/sys/cdefs.h:245:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3525 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3526 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3527 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3528 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3529 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3530 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3531 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3532 /usr/include/sys/cdefs.h:246:9: Warning: redefinition of __section
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3533 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3534 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3535 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3536 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3537 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3538 /usr/include/sys/cdefs.h:246:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3539 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3540 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3541 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3542 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3543 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3544 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3545 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3546 /usr/include/sys/cdefs.h:255:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3547 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3548 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3549 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3550 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3551 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3552 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3553 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3554 /usr/include/sys/cdefs.h:265:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3555 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3556 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3557 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3558 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3559 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3560 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3561 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3562 /usr/include/sys/cdefs.h:271:9: Warning: redefinition of __func__
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3563 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3564 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3565 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3566 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3567 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3568 /usr/include/sys/cdefs.h:271:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3569 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3570 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3571 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3572 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3573 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3574 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3575 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3576 /usr/include/sys/cdefs.h:289:2: #error: "No function renaming possible"
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3577 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3578 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3579 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3580 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3581 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3582 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3583 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3584 /usr/include/sys/cdefs.h:293:9: Warning: redefinition of __RENAME
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3585 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3586 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3587 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3588 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3589 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3590 /usr/include/sys/cdefs.h:293:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3591 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3592 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3593 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3594 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3595 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3596 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3597 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3598 /usr/include/sys/cdefs.h:304:9: Warning: redefinition of __insn_barrier
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3599 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3600 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3601 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3602 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3603 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3604 /usr/include/sys/cdefs.h:304:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3605 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3606 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3607 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3608 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3609 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3610 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3611 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3612 /usr/include/sys/cdefs.h:339:9: Warning: redefinition of __predict_true
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3613 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3614 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3615 /usr/include/sys/cdefs.h:339:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3616 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3617 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3618 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3619 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3620 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3621 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3622 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3623 /usr/include/sys/cdefs.h:340:9: Warning: redefinition of __predict_false
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3624 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3625 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3626 /usr/include/sys/cdefs.h:340:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3627 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3628 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3629 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3630 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3631 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3632 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3633 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3634 /usr/include/sys/cdefs.h:356:9: Warning: redefinition of __printflike
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3635 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3636 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3637 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3638 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3639 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3640 /usr/include/sys/cdefs.h:356:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3641 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3642 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3643 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3644 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3645 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3646 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3647 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3648 /usr/include/sys/cdefs.h:357:9: Warning: redefinition of __scanflike
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3649 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3650 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3651 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3652 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3653 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3654 /usr/include/sys/cdefs.h:357:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3655 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3656 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3657 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3658 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3659 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3660 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3661 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3662 /usr/include/sys/cdefs.h:358:9: Warning: redefinition of __format_arg
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3663 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3664 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3665 /usr/include/sys/cdefs.h:358:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3666 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3667 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3668 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3669 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3670 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3671 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3672 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3673 /usr/include/sys/cdefs.h:444:9: Warning: redefinition of __CAST
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3674 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3675 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3676 /usr/include/sys/cdefs.h:444:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3677 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3678 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3679 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3680 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3681 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3682 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3683 /usr/include/i386/int_types.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3684 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3685 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3686 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3687 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3688 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3689 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3690 /usr/include/i386/int_types.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3691 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3692 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3693 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3694 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3695 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3696 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3697 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3698 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3699 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3700 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3701 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3702 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3703 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3704 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3705 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3706 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3707 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3708 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3709 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3710 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3711 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3712 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3713 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3714 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3715 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3716 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3717 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3718 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3719 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3720 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3721 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3722 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3723 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3724 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3725 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3726 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3727 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3728 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3729 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3730 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3731 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3732 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3733 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3734 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3735 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3736 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3737 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3738 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3739 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3740 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3741 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3742 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3743 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3744 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3745 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3746 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3747 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3748 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3749 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3750 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3751 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3752 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3753 /usr/include/i386/int_types.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3754 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3755 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3756 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3757 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3758 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3759 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3760 /usr/include/i386/int_types.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3761 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3762 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3763 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3764 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3765 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3766 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3767 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3768 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3769 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3770 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3771 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3772 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3773 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3774 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3775 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3776 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3777 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3778 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3779 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3780 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3781 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3782 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3783 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3784 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3785 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3786 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3787 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3788 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3789 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3790 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3791 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3792 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3793 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3794 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3795 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3796 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3797 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3798 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3799 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3800 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3801 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3802 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3803 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3804 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3805 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3806 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3807 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3808 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3809 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3810 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3811 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3812 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3813 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3814 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3815 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3816 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3817 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3818 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3819 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3820 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3821 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3822 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3823 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3824 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3825 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3826 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3827 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3828 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3829 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3830 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3831 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3832 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3833 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3834 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3835 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3836 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3837 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3838 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3839 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3840 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3841 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3842 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3843 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3844 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3845 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3846 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3847 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3848 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3849 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3850 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3851 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3852 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3853 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3854 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3855 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3856 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3857 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3858 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3859 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3860 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3861 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3862 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3863 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3864 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3865 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3866 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3867 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3868 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3869 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3870 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3871 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3872 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3873 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3874 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3875 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3876 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3877 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3878 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3879 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3880 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3881 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3882 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3883 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3884 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3885 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3886 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3887 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3888 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3889 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3890 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3891 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3892 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3893 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3894 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3895 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3896 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3897 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3898 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3899 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3900 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3901 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3902 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3903 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3904 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3905 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3906 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3907 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3908 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3909 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3910 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3911 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3912 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3913 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3914 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3915 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3916 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3917 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3918 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3919 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3920 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3921 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3922 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3923 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3924 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3925 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3926 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3927 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3928 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3929 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3930 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3931 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3932 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3933 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3934 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3935 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3936 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3937 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3938 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3939 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3940 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3941 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3942 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3943 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3944 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3945 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3946 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3947 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3948 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3949 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3950 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3951 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3952 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3953 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3954 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3955 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3956 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3957 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3958 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3959 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3960 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3961 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3962 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3963 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3964 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3965 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3966 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3967 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3968 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3969 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3970 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3971 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3972 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3973 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3974 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3975 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3976 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3977 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3978 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3979 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3980 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3981 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3982 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3983 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3984 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3985 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3986 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3987 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3988 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3989 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3990 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3991 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3992 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3993 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3994 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3995 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3996 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3997 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3998 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3999 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4000 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4001 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4002 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4003 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4004 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4005 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4006 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4007 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4008 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4009 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4010 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4011 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4012 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4013 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4014 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4015 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4016 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4017 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4018 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4019 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4020 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4021 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4022 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4023 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4024 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4025 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4026 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4027 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4028 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4029 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4030 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4031 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4032 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4033 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4034 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4035 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4036 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4037 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4038 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4039 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4040 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4041 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4042 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4043 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4044 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4045 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4046 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4047 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4048 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4049 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4050 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4051 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4052 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4053 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4054 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4055 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4056 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4057 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4058 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4059 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4060 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4061 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4062 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4063 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4064 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4065 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4066 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4067 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4068 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4069 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4070 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4071 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4072 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4073 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4074 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4075 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4076 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4077 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4078 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4079 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4080 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4081 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4082 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4083 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4084 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4085 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4086 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4087 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4088 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4089 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4090 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4091 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4092 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4093 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4094 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4095 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4096 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4097 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4098 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4099 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4100 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4101 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4102 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4103 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4104 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4105 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4106 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4107 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4108 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4109 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4110 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4111 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4112 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4113 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4114 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4115 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4116 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4117 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4118 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4119 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4120 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4121 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4122 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4123 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4124 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4125 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4126 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4127 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4128 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4129 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4130 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4131 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4132 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4133 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4134 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4135 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4136 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4137 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4138 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4139 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4140 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4141 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4142 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4143 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4144 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4145 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4146 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4147 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4148 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4149 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4150 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4151 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4152 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4153 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4154 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4155 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4156 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4157 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4158 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4159 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4160 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4161 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4162 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4163 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4164 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4165 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4166 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4167 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4168 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4169 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4170 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4171 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4172 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4173 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4174 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4175 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4176 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4177 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4178 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4179 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4180 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4181 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4182 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4183 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4184 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4185 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4186 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4187 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4188 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4189 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4190 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4191 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4192 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4193 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4194 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4195 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4196 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4197 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4198 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4199 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4200 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4201 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4202 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4203 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4204 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4205 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4206 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4207 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4208 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4209 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4210 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4211 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4212 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4213 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4214 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4215 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4216 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4217 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4218 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4219 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4220 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4221 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4222 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4223 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4224 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4225 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4226 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4227 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4228 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4229 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4230 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4231 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4232 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4233 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4234 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4235 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4236 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4237 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4238 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4239 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4240 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4241 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4242 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4243 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4244 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4245 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4246 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4247 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4248 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4249 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4250 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4251 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4252 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4253 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4254 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4255 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4256 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4257 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4258 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4259 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4260 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4261 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4262 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4263 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4264 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4265 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4266 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4267 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4268 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4269 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4270 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4271 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4272 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4273 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4274 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4275 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4276 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4277 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4278 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4279 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4280 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4281 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4282 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4283 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4284 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4285 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4286 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4287 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4288 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4289 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4290 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4291 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4292 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4293 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4294 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4295 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4296 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4297 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4298 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4299 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4300 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4301 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4302 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4303 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4304 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4305 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4306 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4307 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4308 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4309 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4310 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4311 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4312 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4313 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4314 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4315 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4316 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4317 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4318 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4319 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4320 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4321 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4322 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4323 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4324 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4325 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4326 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4327 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4328 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4329 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4330 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4331 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4332 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4333 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4334 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4335 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4336 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4337 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4338 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4339 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4340 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4341 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4342 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4343 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4344 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4345 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4346 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4347 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4348 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4349 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4350 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4351 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4352 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4353 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4354 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4355 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4356 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4357 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4358 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4359 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4360 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4361 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4362 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4363 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4364 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4365 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4366 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4367 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4368 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4369 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4370 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4371 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4372 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4373 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4374 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4375 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4376 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4377 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4378 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4379 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4380 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4381 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4382 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4383 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4384 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4385 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4386 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4387 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4388 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4389 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4390 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4391 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4392 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4393 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4394 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4395 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4396 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4397 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4398 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4399 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4400 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4401 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4402 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4403 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4404 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4405 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4406 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4407 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4408 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4409 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4410 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4411 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4412 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4413 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4414 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4415 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4416 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4417 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4418 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4419 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4420 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4421 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4422 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4423 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4424 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4425 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4426 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4427 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4428 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4429 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4430 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4431 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4432 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4433 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4434 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4435 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4436 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4437 /usr/include/i386/ansi.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4438 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4439 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4440 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4441 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4442 /usr/include/i386/ansi.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4443 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4444 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4445 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4446 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4447 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4448 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4449 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4450 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4451 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4452 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4453 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4454 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4455 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4456 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4457 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4458 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4459 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4460 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4461 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4462 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4463 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4464 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4465 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4466 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4467 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4468 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4469 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4470 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4471 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4472 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4473 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4474 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4475 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4476 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4477 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4478 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4479 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4480 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4481 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4482 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4483 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4484 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4485 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4486 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4487 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4488 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4489 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4490 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4491 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4492 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4493 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4494 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4495 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4496 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4497 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4498 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4499 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4500 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4501 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4502 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4503 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4504 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4505 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4506 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4507 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4508 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4509 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4510 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4511 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4512 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4513 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4514 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4515 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4516 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4517 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4518 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4519 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4520 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4521 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4522 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4523 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4524 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4525 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4526 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4527 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4528 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4529 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4530 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4531 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4532 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4533 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4534 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4535 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4536 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4537 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4538 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4539 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4540 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4541 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4542 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4543 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4544 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4545 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4546 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4547 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4548 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4549 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4550 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4551 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4552 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4553 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4554 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4555 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4556 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4557 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4558 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4559 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4560 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4561 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4562 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4563 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4564 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4565 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4566 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4567 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4568 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4569 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4570 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4571 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4572 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4573 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4574 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4575 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4576 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4577 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4578 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4579 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4580 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4581 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4582 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4583 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4584 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4585 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4586 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4587 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4588 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4589 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4590 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4591 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4592 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4593 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4594 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4595 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4596 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4597 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4598 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4599 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4600 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4601 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4602 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4603 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4604 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4605 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4606 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4607 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4608 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4609 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4610 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4611 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4612 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4613 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4614 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4615 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4616 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4617 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4618 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4619 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4620 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4621 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4622 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4623 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4624 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4625 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4626 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4627 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4628 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4629 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4630 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4631 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4632 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4633 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4634 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4635 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4636 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4637 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4638 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4639 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4640 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4641 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4642 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4643 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4644 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4645 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4646 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4647 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4648 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4649 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4650 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4651 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4652 /usr/include/i386/ansi.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4653 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4654 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4655 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4656 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4657 /usr/include/i386/ansi.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4658 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4659 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4660 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4661 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4662 /usr/include/i386/ansi.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4663 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4664 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4665 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4666 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4667 /usr/include/i386/ansi.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4668 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4669 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4670 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4671 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4672 /usr/include/i386/ansi.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4673 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4674 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4675 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4676 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4677 /usr/include/i386/ansi.h:58:9: Redefinition of _BSD_VA_LIST_ is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4678 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4679 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4680 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4681 /usr/include/machine/ansi.h:60:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4682 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4683 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4684 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4685 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4686 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4687 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4688 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4689 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4690 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4691 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4692 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4693 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4694 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4695 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4696 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4697 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4698 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4699 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4700 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4701 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4702 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4703 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4704 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4705 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4706 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4707 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4708 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4709 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4710 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4711 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4712 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4713 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4714 /usr/include/sys/ansi.h:37:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4715 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4716 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4717 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4718 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4719 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4720 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4721 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4722 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4723 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4724 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4725 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4726 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4727 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4728 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4729 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4730 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4731 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4732 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4733 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4734 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4735 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4736 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4737 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4738 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4739 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4740 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4741 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4742 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4743 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4744 /usr/include/sys/ansi.h:38:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4745 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4746 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4747 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4748 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4749 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4750 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4751 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4752 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4753 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4754 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4755 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4756 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4757 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4758 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4759 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4760 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4761 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4762 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4763 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4764 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4765 /usr/include/sys/ansi.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4766 v4"); address */
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4767 typedef __uint16_t __in_port_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4768 typedef __uint32_t __mode_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4769 typedef __int64_t __off_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4770 typedef __int32_t __pid_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4771 typedef __uint8_t __sa_family_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4772 typedef unsigned int __socklen_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4773 typedef __uint32_t __uid_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4774 typedef __uint64_t __fsblkcnt_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4775 typedef __uint64_t __fsfilcnt_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4776 struct __tag_wctrans_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4777 typedef struct __tag_wctrans_t *__wctrans_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4778 struct __tag_wctype_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4779 typedef struct __tag_wctype_t *__wctype_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4780
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4781 typedef union {
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4782 __int64_t __mbstateL;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4783 char __mbstate8[128];
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4784 } __mbstate_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4785
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4786
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4787 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4788 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4789 /usr/include/machine/ansi.h:60:9: Warning: redefinition of _BSD_VA_LIST_
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4790 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4791 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4792 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4793 /usr/include/machine/ansi.h:60:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4794
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4795
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4796
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4797
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4798 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4799 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4800 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4801 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4802 /usr/include/sys/cdefs.h:56:9: Warning: redefinition of __GNUC_PREREQ__
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4803 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4804 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4805 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4806 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4807 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4808 /usr/include/sys/cdefs.h:56:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4809
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4810
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4811 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4812 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4813 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4814 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4815 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4816 /usr/include/sys/cdefs_aout.h:11:9: Warning: redefinition of _C_LABEL
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4817 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4818 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4819 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4820 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4821 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4822 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4823 /usr/include/sys/cdefs_aout.h:11:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4824 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4825 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4826 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4827 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4828 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4829 /usr/include/sys/cdefs_aout.h:21:9: Warning: redefinition of __indr_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4830 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4831 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4832 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4833 /usr/include/sys/cdefs_elf.h:52:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4834 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4835 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4836 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4837 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4838 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4839 /usr/include/sys/cdefs_aout.h:39:9: Warning: redefinition of __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4840 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4841 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4842 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4843 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4844 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4845 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4846 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4847 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4848 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4849 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4850 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4851 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4852 /usr/include/sys/cdefs_aout.h:46:9: Warning: redefinition of __weak_alias
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4853 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4854 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4855 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4856 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4857 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4858 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4859 /usr/include/sys/cdefs_aout.h:46:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4860 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4861 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4862 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4863 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4864 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4865 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4866 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4867 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4868 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4869 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4870 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4871 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4872 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4873 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4874 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4875 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4876 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4877 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4878 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4879 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4880 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4881 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4882 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4883 /usr/include/sys/cdefs_aout.h:57:9: Warning: redefinition of ___weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4884 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4885 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4886 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4887 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4888 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4889 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4890 /usr/include/sys/cdefs_aout.h:57:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4891 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4892 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4893 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4894 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4895 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4896 /usr/include/sys/cdefs_aout.h:58:9: Redefinition of __weak_reference is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4897 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4898 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4899 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4900 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4901 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4902 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4903 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4904 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4905 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4906 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4907 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4908 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4909 /usr/include/sys/cdefs_aout.h:61:9: Warning: redefinition of __warn_references
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4910 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4911 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4912 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4913 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4914 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4915 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4916 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4917 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4918 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4919 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4920 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4921 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4922 /usr/include/sys/cdefs_aout.h:66:9: Redefinition of __warn_references is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4923 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4924 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4925 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4926 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4927 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4928 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4929 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4930 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4931 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4932 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4933 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4934 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4935 /usr/include/sys/cdefs_aout.h:69:9: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4936 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4937 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4938 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4939 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4940 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4941 /usr/include/sys/cdefs_aout.h:69:8: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4942 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4943 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4944 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4945 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4946 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4947 /usr/include/sys/cdefs_aout.h:69:15: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4948 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4949 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4950 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4951 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4952 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4953 /usr/include/sys/cdefs_aout.h:69:18: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4954 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4955 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4956 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4957 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4958 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4959 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4960 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4961 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4962 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4963 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4964 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4965 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4966 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4967 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4968 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4969 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4970 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4971 /usr/include/sys/cdefs_aout.h:75:9: Redefinition of __IDSTRING is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4972 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4973 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4974 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4975 /usr/include/sys/cdefs_elf.h:115:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4976 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4977 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4978 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4979 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4980 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4981 /usr/include/sys/cdefs_aout.h:80:9: Warning: redefinition of __RCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4982 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4983 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4984 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4985 /usr/include/sys/cdefs_elf.h:117:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4986 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4987 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4988 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4989 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4990 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4991 /usr/include/sys/cdefs_aout.h:81:9: Warning: redefinition of __SCCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4992 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4993 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4994 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4995 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4996 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4997 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4998 /usr/include/sys/cdefs_aout.h:81:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4999 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5000 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5001 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5002 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5003 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5004 /usr/include/sys/cdefs_aout.h:83:8: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5005 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5006 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5007 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5008 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5009 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5010 /usr/include/sys/cdefs_aout.h:83:7: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5011 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5012 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5013 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5014 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5015 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5016 /usr/include/sys/cdefs_aout.h:83:14: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5017 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5018 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5019 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5020 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5021 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5022 /usr/include/sys/cdefs_aout.h:83:23: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5023 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5024 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5025 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5026 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5027 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5028 /usr/include/sys/cdefs_aout.h:83:36: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5029 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5030 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5031 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5032 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5033 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5034 /usr/include/sys/cdefs_aout.h:83:41: Invalid character 92 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5035 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5036 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5037 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5038 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5039 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5040 /usr/include/sys/cdefs_aout.h:83:42: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5041 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5042 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5043 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5044 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5045 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5046 /usr/include/sys/cdefs_aout.h:83:45: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5047 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5048 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5049 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5050 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5051 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5052 /usr/include/sys/cdefs_aout.h:83:48: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5053 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5054 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5055 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5056 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5057 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5058 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5059 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5060 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5061 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5062 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5063 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5064 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5065 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5066 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5067 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5068 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5069 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5070 /usr/include/sys/cdefs_aout.h:86:9: Warning: redefinition of __COPYRIGHT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5071 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5072 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5073 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5074 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5075 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5076 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5077 /usr/include/sys/cdefs_aout.h:86:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5078 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5079 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5080 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5081 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5082 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5083 /usr/include/sys/cdefs_aout.h:95:9: Warning: redefinition of __KERNEL_SCCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5084 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5085 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5086 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5087 /usr/include/sys/cdefs_elf.h:123:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5088 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5089 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5090 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5091 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5092 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5093 /usr/include/sys/cdefs_aout.h:96:9: Warning: redefinition of __KERNEL_COPYRIGHT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5094 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5095 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5096 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5097 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5098 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5099 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5100 /usr/include/sys/cdefs_aout.h:96:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5101 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5102 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5103 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5104 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5105 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5106 /usr/include/sys/cdefs_aout.h:108:9: Warning: redefinition of __link_set_add_text
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5107 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5108 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5109 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5110 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5111 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5112 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5113 /usr/include/sys/cdefs_aout.h:108:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5114 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5115 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5116 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5117 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5118 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5119 /usr/include/sys/cdefs_aout.h:110:9: Redefinition of __link_set_add_data is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5120 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5121 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5122 In file included from /usr/include/sys/cdefs.h:61:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5123 /usr/include/sys/cdefs_elf.h:142:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5124 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5125 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5126 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5127 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5128 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5129 /usr/include/sys/cdefs_aout.h:113:9: Warning: redefinition of __link_set_decl
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5130 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5131 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5132 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5133 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5134 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5135 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5136 /usr/include/sys/cdefs_aout.h:113:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5137 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5138 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5139 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5140 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5141 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5142 /usr/include/sys/cdefs_aout.h:120:9: Warning: redefinition of __link_set_end
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5143 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5144 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5145 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5146 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5147 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5148 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5149 /usr/include/sys/cdefs_aout.h:120:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5150 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5151 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5152 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5153 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5154 /usr/include/sys/cdefs.h:72:9: Warning: redefinition of __END_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5155 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5156 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5157 /usr/include/sys/cdefs.h:72:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5158 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5159 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5160 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5161 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5162 /usr/include/sys/cdefs.h:73:9: Warning: redefinition of __static_cast
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5163 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5164 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5165 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5166 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5167 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5168 /usr/include/sys/cdefs.h:73:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5169 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5170 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5171 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5172 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5173 /usr/include/sys/cdefs.h:106:9: Warning: redefinition of __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5174 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5175 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5176 /usr/include/sys/cdefs.h:106:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5177 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5178 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5179 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5180 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5181 /usr/include/sys/cdefs.h:109:9: Warning: redefinition of __const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5182 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5183 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5184 /usr/include/sys/cdefs.h:109:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5185 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5186 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5187 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5188 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5189 /usr/include/sys/cdefs.h:111:9: Warning: redefinition of __signed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5190 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5191 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5192 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5193 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5194 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5195 /usr/include/sys/cdefs.h:111:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5196 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5197 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5198 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5199 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5200 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5201 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5202 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5203 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5204 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5205 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5206 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5207 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5208 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5209 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5210 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5211 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5212 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5213 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5214 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5215 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5216 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5217 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5218 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5219 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5220 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5221 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5222 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5223 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5224 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5225 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5226 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5227 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5228 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5229 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5230 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5231 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5232 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5233 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5234 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5235 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5236 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5237 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5238 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5239 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5240 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5241 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5242 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5243 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5244 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5245 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5246 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5247 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5248 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5249 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5250 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5251 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5252 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5253 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5254 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5255 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5256 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5257 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5258 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5259 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5260 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5261 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5262 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5263 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5264 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5265 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5266 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5267 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5268 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5269 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5270 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5271 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5272 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5273 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5274 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5275 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5276 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5277 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5278 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5279 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5280 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5281 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5282 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5283 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5284 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5285 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5286 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5287 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5288 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5289 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5290 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5291 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5292 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5293 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5294 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5295 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5296 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5297 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5298 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5299 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5300 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5301 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5302 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5303 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5304 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5305 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5306 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5307 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5308 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5309 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5310 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5311 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5312 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5313 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5314 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5315 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5316 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5317 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5318 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5319 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5320 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5321 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5322 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5323 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5324 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5325 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5326 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5327 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5328 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5329 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5330 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5331 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5332 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5333 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5334 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5335 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5336 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5337 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5338 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5339 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5340 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5341 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5342 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5343 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5344 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5345 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5346 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5347 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5348 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5349 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5350 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5351 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5352 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5353 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5354 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5355 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5356 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5357 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5358 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5359 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5360 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5361 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5362 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5363 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5364 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5365 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5366 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5367 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5368 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5369 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5370 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5371 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5372 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5373 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5374 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5375 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5376 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5377 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5378 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5379 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5380 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5381 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5382 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5383 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5384 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5385 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5386 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5387 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5388 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5389 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5390 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5391 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5392 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5393 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5394 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5395 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5396 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5397 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5398 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5399 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5400 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5401 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5402 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5403 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5404 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5405 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5406 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5407 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5408 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5409 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5410 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5411 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5412 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5413 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5414 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5415 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5416 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5417 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5418 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5419 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5420 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5421 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5422 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5423 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5424 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5425 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5426 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5427 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5428 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5429 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5430 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5431 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5432 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5433 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5434 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5435 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5436 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5437 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5438 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5439 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5440 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5441 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5442 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5443 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5444 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5445 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5446 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5447 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5448 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5449 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5450 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5451 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5452 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5453 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5454 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5455 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5456 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5457 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5458 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5459 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5460 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5461 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5462 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5463 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5464 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5465 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5466 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5467 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5468 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5469 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5470 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5471 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5472 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5473 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5474 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5475 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5476 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5477 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5478 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5479 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5480 /usr/include/sys/cdefs.h:122:9: Warning: redefinition of const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5481 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5482 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5483 /usr/include/sys/cdefs.h:122:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5484 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5485 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5486 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5487 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5488 /usr/include/sys/cdefs.h:135:9: Warning: redefinition of __aconst
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5489 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5490 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5491 /usr/include/sys/cdefs.h:135:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5492 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5493 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5494 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5495 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5496 /usr/include/sys/cdefs.h:204:9: Warning: redefinition of __pure
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5497 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5498 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5499 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5500 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5501 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5502 /usr/include/sys/cdefs.h:204:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5503 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5504 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5505 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5506 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5507 /usr/include/sys/cdefs.h:210:9: Warning: redefinition of __constfunc
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5508 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5509 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5510 /usr/include/sys/cdefs.h:210:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5511 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5512 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5513 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5514 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5515 /usr/include/sys/cdefs.h:222:9: Warning: redefinition of __unused
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5516 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5517 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5518 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5519 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5520 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5521 /usr/include/sys/cdefs.h:222:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5522 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5523 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5524 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5525 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5526 /usr/include/sys/cdefs.h:246:9: Warning: redefinition of __section
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5527 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5528 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5529 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5530 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5531 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5532 /usr/include/sys/cdefs.h:246:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5533 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5534 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5535 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5536 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5537 /usr/include/sys/cdefs.h:255:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5538 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5539 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5540 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5541 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5542 /usr/include/sys/cdefs.h:265:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5543 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5544 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5545 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5546 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5547 /usr/include/sys/cdefs.h:289:2: #error: "No function renaming possible"
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5548 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5549 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5550 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5551 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5552 /usr/include/sys/cdefs.h:357:9: Warning: redefinition of __scanflike
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5553 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5554 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5555 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5556 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5557 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5558 /usr/include/sys/cdefs.h:357:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5559 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5560 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5561 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5562 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5563 /usr/include/sys/cdefs.h:444:9: Warning: redefinition of __CAST
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5564 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5565 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5566 /usr/include/sys/cdefs.h:444:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5567 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5568 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5569 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5570 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5571 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5572 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5573 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5574 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5575 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5576 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5577 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5578 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5579 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5580 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5581 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5582 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5583 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5584 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5585 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5586 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5587 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5588 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5589 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5590 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5591 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5592 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5593 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5594 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5595 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5596 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5597 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5598 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5599 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5600 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5601 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5602 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5603 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5604 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5605 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5606 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5607 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5608 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5609 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5610 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5611 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5612 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5613 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5614 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5615 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5616 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5617 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5618 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5619 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5620 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5621 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5622 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5623 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5624 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5625 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5626 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5627 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5628 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5629 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5630 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5631 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5632 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5633 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5634 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5635 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5636 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5637 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5638 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5639 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5640 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5641 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5642 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5643 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5644 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5645 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5646 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5647 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5648 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5649 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5650 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5651 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5652 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5653 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5654 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5655 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5656 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5657 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5658 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5659 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5660 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5661 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5662 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5663 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5664 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5665 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5666 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5667 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5668 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5669 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5670 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5671 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5672 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5673 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5674 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5675 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5676 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5677 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5678 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5679 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5680 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5681 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5682 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5683 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5684 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5685 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5686 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5687 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5688 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5689 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5690 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5691 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5692 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5693 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5694 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5695 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5696 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5697 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5698 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5699 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5700 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5701 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5702 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5703 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5704 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5705 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5706 /usr/include/machine/int_types.h:1:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5707 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5708 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5709 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5710 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5711 /usr/include/machine/int_types.h:3:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5712 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5713 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5714 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5715 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5716 /usr/include/machine/int_types.h:3:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5717 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5718 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5719 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5720 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5721 /usr/include/machine/int_types.h:3:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5722 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5723 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5724 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5725 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5726 /usr/include/machine/int_types.h:4:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5727 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5728 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5729 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5730 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5731 /usr/include/machine/int_types.h:4:1: Expected arguments for macro __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5732
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5733
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5734
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5735
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5736
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5737 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5738 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5739 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5740 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5741 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5742 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5743 /usr/include/sys/cdefs.h:56:9: Warning: redefinition of __GNUC_PREREQ__
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5744 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5745 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5746 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5747 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5748 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5749 /usr/include/sys/cdefs.h:56:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5750
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5751
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5752 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5753 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5754 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5755 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5756 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5757 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5758 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5759 /usr/include/sys/cdefs_aout.h:17:9: Warning: redefinition of ___RENAME
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5760 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5761 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5762 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5763 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5764 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5765 /usr/include/sys/cdefs_aout.h:17:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5766 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5767 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5768 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5769 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5770 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5771 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5772 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5773 /usr/include/sys/cdefs_aout.h:18:9: Warning: redefinition of ____RENAME
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5774 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5775 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5776 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5777 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5778 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5779 /usr/include/sys/cdefs_aout.h:18:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5780 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5781 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5782 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5783 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5784 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5785 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5786 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5787 /usr/include/sys/cdefs_aout.h:39:9: Warning: redefinition of __weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5788 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5789 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5790 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5791 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5792 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5793 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5794 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5795 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5796 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5797 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5798 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5799 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5800 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5801 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5802 /usr/include/sys/cdefs_aout.h:46:9: Warning: redefinition of __weak_alias
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5803 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5804 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5805 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5806 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5807 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5808 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5809 /usr/include/sys/cdefs_aout.h:46:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5810 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5811 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5812 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5813 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5814 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5815 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5816 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5817 /usr/include/sys/cdefs_aout.h:47:9: Warning: redefinition of ___weak_alias
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5818 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5819 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5820 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5821 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5822 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5823 /usr/include/sys/cdefs_aout.h:47:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5824 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5825 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5826 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5827 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5828 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5829 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5830 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5831 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5832 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5833 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5834 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5835 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5836 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5837 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5838 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5839 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5840 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5841 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5842 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5843 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5844 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5845 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5846 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5847 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5848 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5849 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5850 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5851 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5852 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5853 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5854 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5855 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5856 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5857 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5858 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5859 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5860 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5861 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5862 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5863 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5864 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5865 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5866 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5867 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5868 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5869 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5870 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5871 /usr/include/sys/cdefs_aout.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5872 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5873 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5874 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5875 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5876 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5877 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5878 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5879 /usr/include/sys/cdefs_aout.h:50:9: Warning: redefinition of __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5880 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5881 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5882 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5883 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5884 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5885 /usr/include/sys/cdefs_aout.h:50:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5886 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5887 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5888 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5889 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5890 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5891 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5892 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5893 /usr/include/sys/cdefs_aout.h:51:9: Warning: redefinition of ___weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5894 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5895 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5896 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5897 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5898 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5899 /usr/include/sys/cdefs_aout.h:51:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5900 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5901 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5902 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5903 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5904 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5905 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5906 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5907 /usr/include/sys/cdefs_aout.h:57:9: Warning: redefinition of ___weak_reference
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5908 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5909 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5910 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5911 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5912 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5913 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5914 /usr/include/sys/cdefs_aout.h:57:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5915 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5916 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5917 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5918 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5919 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5920 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5921 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5922 /usr/include/sys/cdefs_aout.h:58:9: Redefinition of __weak_reference is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5923 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5924 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5925 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5926 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5927 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5928 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5929 /usr/include/sys/cdefs_aout.h:39:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5930 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5931 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5932 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5933 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5934 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5935 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5936 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5937 /usr/include/sys/cdefs_aout.h:61:9: Warning: redefinition of __warn_references
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5938 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5939 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5940 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5941 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5942 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5943 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5944 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5945 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5946 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5947 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5948 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5949 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5950 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5951 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5952 /usr/include/sys/cdefs_aout.h:66:9: Redefinition of __warn_references is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5953 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5954 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5955 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5956 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5957 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5958 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5959 /usr/include/sys/cdefs_aout.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5960 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5961 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5962 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5963 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5964 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5965 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5966 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5967 /usr/include/sys/cdefs_aout.h:69:9: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5968 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5969 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5970 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5971 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5972 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5973 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5974 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5975 /usr/include/sys/cdefs_aout.h:69:8: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5976 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5977 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5978 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5979 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5980 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5981 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5982 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5983 /usr/include/sys/cdefs_aout.h:69:15: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5984 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5985 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5986 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5987 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5988 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5989 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5990 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5991 /usr/include/sys/cdefs_aout.h:69:18: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5992 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5993 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5994 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5995 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5996 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5997 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5998 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5999 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6000 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6001 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6002 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6003 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6004 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6005 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6006 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6007 /usr/include/sys/cdefs_aout.h:69:25: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6008 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6009 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6010 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6011 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6012 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6013 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6014 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6015 /usr/include/sys/cdefs_aout.h:83:8: Invalid unary operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6016 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6017 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6018 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6019 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6020 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6021 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6022 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6023 /usr/include/sys/cdefs_aout.h:83:7: Division by zero
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6024 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6025 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6026 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6027 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6028 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6029 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6030 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6031 /usr/include/sys/cdefs_aout.h:83:14: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6032 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6033 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6034 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6035 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6036 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6037 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6038 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6039 /usr/include/sys/cdefs_aout.h:83:23: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6040 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6041 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6042 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6043 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6044 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6045 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6046 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6047 /usr/include/sys/cdefs_aout.h:83:36: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6048 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6049 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6050 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6051 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6052 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6053 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6054 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6055 /usr/include/sys/cdefs_aout.h:83:41: Invalid character 92 in #if-expression
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6056 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6057 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6058 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6059 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6060 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6061 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6062 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6063 /usr/include/sys/cdefs_aout.h:83:42: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6064 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6065 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6066 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6067 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6068 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6069 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6070 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6071 /usr/include/sys/cdefs_aout.h:83:45: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6072 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6073 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6074 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6075 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6076 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6077 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6078 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6079 /usr/include/sys/cdefs_aout.h:83:48: Operator expected
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6080 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6081 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6082 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6083 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6084 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6085 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6086 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6087 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6088 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6089 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6090 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6091 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6092 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6093 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6094 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6095 /usr/include/sys/cdefs_aout.h:83:55: Value expected after operator
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6096 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6097 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6098 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6099 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6100 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6101 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6102 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6103 /usr/include/sys/cdefs_aout.h:86:9: Warning: redefinition of __COPYRIGHT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6104 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6105 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6106 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6107 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6108 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6109 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6110 /usr/include/sys/cdefs_aout.h:86:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6111 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6112 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6113 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6114 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6115 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6116 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6117 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6118 /usr/include/sys/cdefs_aout.h:93:9: Warning: redefinition of __KERNEL_RCSID
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6119 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6120 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6121 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6122 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6123 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6124 /usr/include/sys/cdefs_aout.h:93:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6125 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6126 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6127 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6128 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6129 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6130 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6131 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6132 /usr/include/sys/cdefs_aout.h:99:9: Warning: redefinition of __link_set_make_entry
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6133 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6134 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6135 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6136 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6137 In file included from /usr/include/sys/cdefs.h:63:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6138 /usr/include/sys/cdefs_aout.h:99:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6139 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6140 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6141 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6142 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6143 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6144 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6145 /usr/include/sys/cdefs.h:71:9: Warning: redefinition of __BEGIN_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6146 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6147 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6148 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6149 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6150 /usr/include/sys/cdefs.h:71:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6151 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6152 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6153 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6154 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6155 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6156 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6157 /usr/include/sys/cdefs.h:72:9: Warning: redefinition of __END_DECLS
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6158 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6159 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6160 /usr/include/sys/cdefs.h:72:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6161 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6162 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6163 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6164 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6165 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6166 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6167 /usr/include/sys/cdefs.h:73:9: Warning: redefinition of __static_cast
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6168 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6169 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6170 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6171 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6172 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6173 /usr/include/sys/cdefs.h:73:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6174 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6175 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6176 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6177 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6178 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6179 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6180 /usr/include/sys/cdefs.h:104:9: Warning: redefinition of __P
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6181 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6182 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6183 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6184 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6185 /usr/include/sys/cdefs.h:104:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6186 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6187 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6188 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6189 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6190 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6191 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6192 /usr/include/sys/cdefs.h:105:9: Warning: redefinition of __CONCAT
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6193 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6194 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6195 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6196 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6197 /usr/include/sys/cdefs.h:105:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6198 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6199 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6200 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6201 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6202 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6203 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6204 /usr/include/sys/cdefs.h:106:9: Warning: redefinition of __STRING
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6205 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6206 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6207 /usr/include/sys/cdefs.h:106:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6208 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6209 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6210 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6211 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6212 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6213 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6214 /usr/include/sys/cdefs.h:109:9: Warning: redefinition of __const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6215 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6216 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6217 /usr/include/sys/cdefs.h:109:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6218 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6219 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6220 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6221 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6222 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6223 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6224 /usr/include/sys/cdefs.h:110:9: Warning: redefinition of __inline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6225 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6226 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6227 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6228 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6229 /usr/include/sys/cdefs.h:110:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6230 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6231 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6232 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6233 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6234 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6235 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6236 /usr/include/sys/cdefs.h:111:9: Warning: redefinition of __signed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6237 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6238 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6239 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6240 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6241 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6242 /usr/include/sys/cdefs.h:111:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6243 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6244 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6245 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6246 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6247 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6248 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6249 /usr/include/sys/cdefs.h:112:9: Warning: redefinition of __volatile
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6250 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6251 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6252 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6253 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6254 /usr/include/sys/cdefs.h:112:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6255 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6256 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6257 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6258 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6259 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6260 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6261 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6262 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6263 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6264 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6265 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6266 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6267 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6268 /usr/include/sys/cdefs.h:115:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6269 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6270 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6271 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6272 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6273 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6274 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6275 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6276 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6277 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6278 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6279 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6280 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6281 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6282 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6283 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6284 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6285 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6286 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6287 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6288 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6289 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6290 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6291 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6292 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6293 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6294 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6295 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6296 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6297 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6298 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6299 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6300 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6301 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6302 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6303 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6304 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6305 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6306 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6307 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6308 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6309 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6310 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6311 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6312 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6313 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6314 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6315 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6316 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6317 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6318 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6319 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6320 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6321 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6322 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6323 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6324 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6325 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6326 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6327 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6328 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6329 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6330 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6331 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6332 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6333 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6334 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6335 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6336 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6337 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6338 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6339 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6340 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6341 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6342 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6343 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6344 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6345 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6346 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6347 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6348 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6349 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6350 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6351 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6352 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6353 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6354 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6355 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6356 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6357 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6358 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6359 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6360 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6361 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6362 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6363 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6364 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6365 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6366 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6367 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6368 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6369 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6370 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6371 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6372 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6373 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6374 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6375 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6376 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6377 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6378 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6379 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6380 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6381 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6382 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6383 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6384 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6385 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6386 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6387 /usr/include/sys/cdefs.h:116:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6388 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6389 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6390 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6391 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6392 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6393 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6394 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6395 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6396 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6397 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6398 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6399 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6400 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6401 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6402 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6403 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6404 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6405 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6406 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6407 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6408 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6409 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6410 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6411 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6412 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6413 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6414 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6415 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6416 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6417 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6418 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6419 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6420 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6421 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6422 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6423 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6424 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6425 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6426 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6427 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6428 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6429 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6430 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6431 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6432 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6433 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6434 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6435 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6436 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6437 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6438 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6439 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6440 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6441 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6442 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6443 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6444 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6445 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6446 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6447 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6448 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6449 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6450 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6451 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6452 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6453 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6454 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6455 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6456 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6457 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6458 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6459 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6460 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6461 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6462 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6463 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6464 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6465 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6466 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6467 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6468 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6469 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6470 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6471 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6472 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6473 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6474 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6475 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6476 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6477 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6478 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6479 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6480 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6481 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6482 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6483 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6484 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6485 /usr/include/sys/cdefs.h:117:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6486 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6487 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6488 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6489 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6490 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6491 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6492 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6493 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6494 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6495 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6496 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6497 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6498 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6499 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6500 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6501 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6502 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6503 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6504 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6505 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6506 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6507 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6508 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6509 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6510 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6511 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6512 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6513 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6514 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6515 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6516 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6517 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6518 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6519 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6520 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6521 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6522 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6523 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6524 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6525 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6526 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6527 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6528 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6529 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6530 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6531 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6532 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6533 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6534 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6535 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6536 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6537 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6538 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6539 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6540 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6541 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6542 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6543 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6544 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6545 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6546 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6547 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6548 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6549 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6550 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6551 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6552 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6553 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6554 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6555 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6556 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6557 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6558 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6559 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6560 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6561 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6562 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6563 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6564 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6565 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6566 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6567 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6568 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6569 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6570 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6571 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6572 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6573 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6574 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6575 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6576 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6577 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6578 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6579 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6580 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6581 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6582 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6583 /usr/include/sys/cdefs.h:118:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6584 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6585 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6586 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6587 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6588 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6589 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6590 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6591 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6592 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6593 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6594 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6595 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6596 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6597 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6598 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6599 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6600 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6601 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6602 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6603 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6604 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6605 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6606 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6607 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6608 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6609 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6610 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6611 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6612 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6613 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6614 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6615 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6616 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6617 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6618 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6619 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6620 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6621 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6622 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6623 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6624 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6625 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6626 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6627 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6628 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6629 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6630 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6631 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6632 /usr/include/sys/cdefs.h:119:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6633 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6634 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6635 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6636 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6637 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6638 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6639 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6640 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6641 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6642 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6643 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6644 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6645 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6646 /usr/include/sys/cdefs.h:120:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6647 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6648 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6649 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6650 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6651 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6652 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6653 /usr/include/sys/cdefs.h:122:9: Warning: redefinition of const
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6654 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6655 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6656 /usr/include/sys/cdefs.h:122:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6657 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6658 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6659 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6660 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6661 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6662 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6663 /usr/include/sys/cdefs.h:123:9: Warning: redefinition of inline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6664 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6665 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6666 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6667 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6668 /usr/include/sys/cdefs.h:123:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6669 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6670 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6671 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6672 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6673 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6674 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6675 /usr/include/sys/cdefs.h:124:9: Warning: redefinition of signed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6676 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6677 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6678 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6679 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6680 /usr/include/sys/cdefs.h:124:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6681 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6682 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6683 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6684 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6685 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6686 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6687 /usr/include/sys/cdefs.h:125:9: Warning: redefinition of volatile
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6688 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6689 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6690 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6691 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6692 /usr/include/sys/cdefs.h:125:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6693 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6694 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6695 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6696 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6697 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6698 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6699 /usr/include/sys/cdefs.h:135:9: Warning: redefinition of __aconst
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6700 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6701 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6702 /usr/include/sys/cdefs.h:135:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6703 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6704 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6705 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6706 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6707 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6708 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6709 /usr/include/sys/cdefs.h:196:9: Warning: redefinition of __dead
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6710 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6711 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6712 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6713 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6714 /usr/include/sys/cdefs.h:196:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6715 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6716 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6717 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6718 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6719 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6720 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6721 /usr/include/sys/cdefs.h:204:9: Warning: redefinition of __pure
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6722 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6723 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6724 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6725 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6726 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6727 /usr/include/sys/cdefs.h:204:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6728 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6729 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6730 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6731 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6732 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6733 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6734 /usr/include/sys/cdefs.h:210:9: Warning: redefinition of __constfunc
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6735 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6736 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6737 /usr/include/sys/cdefs.h:210:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6738 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6739 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6740 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6741 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6742 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6743 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6744 /usr/include/sys/cdefs.h:216:9: Warning: redefinition of __noinline
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6745 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6746 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6747 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6748 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6749 /usr/include/sys/cdefs.h:216:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6750 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6751 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6752 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6753 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6754 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6755 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6756 /usr/include/sys/cdefs.h:222:9: Warning: redefinition of __unused
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6757 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6758 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6759 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6760 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6761 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6762 /usr/include/sys/cdefs.h:222:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6763 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6764 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6765 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6766 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6767 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6768 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6769 /usr/include/sys/cdefs.h:228:9: Warning: redefinition of __used
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6770 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6771 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6772 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6773 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6774 /usr/include/sys/cdefs.h:228:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6775 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6776 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6777 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6778 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6779 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6780 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6781 /usr/include/sys/cdefs.h:244:9: Warning: redefinition of __packed
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6782 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6783 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6784 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6785 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6786 /usr/include/sys/cdefs.h:244:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6787 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6788 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6789 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6790 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6791 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6792 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6793 /usr/include/sys/cdefs.h:245:9: Warning: redefinition of __aligned
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6794 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6795 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6796 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6797 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6798 /usr/include/sys/cdefs.h:245:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6799 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6800 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6801 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6802 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6803 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6804 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6805 /usr/include/sys/cdefs.h:246:9: Warning: redefinition of __section
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6806 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6807 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6808 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6809 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6810 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6811 /usr/include/sys/cdefs.h:246:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6812 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6813 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6814 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6815 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6816 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6817 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6818 /usr/include/sys/cdefs.h:255:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6819 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6820 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6821 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6822 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6823 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6824 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6825 /usr/include/sys/cdefs.h:265:27: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6826 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6827 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6828 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6829 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6830 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6831 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6832 /usr/include/sys/cdefs.h:271:9: Warning: redefinition of __func__
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6833 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6834 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6835 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6836 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6837 /usr/include/sys/cdefs.h:271:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6838 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6839 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6840 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6841 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6842 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6843 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6844 /usr/include/sys/cdefs.h:289:2: #error: "No function renaming possible"
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6845 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6846 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6847 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6848 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6849 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6850 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6851 /usr/include/sys/cdefs.h:293:9: Warning: redefinition of __RENAME
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6852 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6853 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6854 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6855 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6856 /usr/include/sys/cdefs.h:293:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6857 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6858 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6859 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6860 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6861 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6862 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6863 /usr/include/sys/cdefs.h:304:9: Warning: redefinition of __insn_barrier
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6864 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6865 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6866 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6867 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6868 /usr/include/sys/cdefs.h:304:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6869 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6870 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6871 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6872 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6873 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6874 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6875 /usr/include/sys/cdefs.h:339:9: Warning: redefinition of __predict_true
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6876 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6877 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6878 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6879 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6880 /usr/include/sys/cdefs.h:339:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6881 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6882 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6883 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6884 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6885 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6886 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6887 /usr/include/sys/cdefs.h:340:9: Warning: redefinition of __predict_false
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6888 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6889 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6890 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6891 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6892 /usr/include/sys/cdefs.h:340:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6893 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6894 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6895 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6896 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6897 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6898 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6899 /usr/include/sys/cdefs.h:356:9: Warning: redefinition of __printflike
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6900 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6901 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6902 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6903 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6904 /usr/include/sys/cdefs.h:356:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6905 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6906 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6907 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6908 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6909 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6910 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6911 /usr/include/sys/cdefs.h:357:9: Warning: redefinition of __scanflike
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6912 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6913 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6914 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6915 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6916 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6917 /usr/include/sys/cdefs.h:357:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6918 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6919 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6920 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6921 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6922 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6923 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6924 /usr/include/sys/cdefs.h:358:9: Warning: redefinition of __format_arg
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6925 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6926 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6927 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6928 In file included from /usr/include/i386/ansi.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6929 /usr/include/sys/cdefs.h:358:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6930 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6931 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6932 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6933 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6934 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6935 In file included from /usr/include/i386/int_types.h:37:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6936 /usr/include/sys/cdefs.h:444:9: Warning: redefinition of __CAST
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6937 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6938 In file included from /usr/include/stdio.h:40:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6939 /usr/include/sys/cdefs.h:444:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6940 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6941 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6942 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6943 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6944 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6945 /usr/include/i386/int_types.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6946 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6947 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6948 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6949 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6950 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6951 /usr/include/i386/int_types.h:39:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6952 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6953 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6954 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6955 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6956 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6957 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6958 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6959 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6960 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6961 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6962 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6963 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6964 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6965 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6966 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6967 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6968 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6969 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6970 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6971 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6972 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6973 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6974 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6975 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6976 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6977 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6978 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6979 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6980 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6981 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6982 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6983 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6984 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6985 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6986 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6987 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6988 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6989 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6990 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6991 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6992 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6993 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6994 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6995 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6996 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6997 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6998 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6999 /usr/include/i386/int_types.h:40:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7000 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7001 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7002 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7003 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7004 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7005 /usr/include/i386/int_types.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7006 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7007 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7008 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7009 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7010 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7011 /usr/include/i386/int_types.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7012 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7013 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7014 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7015 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7016 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7017 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7018 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7019 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7020 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7021 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7022 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7023 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7024 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7025 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7026 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7027 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7028 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7029 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7030 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7031 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7032 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7033 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7034 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7035 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7036 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7037 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7038 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7039 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7040 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7041 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7042 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7043 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7044 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7045 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7046 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7047 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7048 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7049 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7050 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7051 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7052 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7053 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7054 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7055 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7056 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7057 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7058 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7059 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7060 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7061 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7062 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7063 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7064 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7065 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7066 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7067 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7068 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7069 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7070 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7071 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7072 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7073 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7074 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7075 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7076 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7077 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7078 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7079 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7080 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7081 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7082 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7083 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7084 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7085 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7086 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7087 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7088 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7089 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7090 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7091 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7092 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7093 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7094 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7095 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7096 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7097 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7098 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7099 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7100 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7101 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7102 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7103 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7104 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7105 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7106 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7107 /usr/include/i386/int_types.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7108 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7109 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7110 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7111 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7112 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7113 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7114 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7115 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7116 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7117 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7118 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7119 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7120 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7121 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7122 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7123 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7124 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7125 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7126 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7127 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7128 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7129 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7130 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7131 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7132 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7133 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7134 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7135 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7136 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7137 /usr/include/i386/int_types.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7138 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7139 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7140 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7141 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7142 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7143 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7144 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7145 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7146 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7147 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7148 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7149 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7150 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7151 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7152 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7153 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7154 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7155 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7156 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7157 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7158 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7159 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7160 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7161 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7162 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7163 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7164 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7165 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7166 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7167 /usr/include/i386/int_types.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7168 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7169 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7170 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7171 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7172 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7173 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7174 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7175 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7176 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7177 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7178 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7179 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7180 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7181 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7182 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7183 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7184 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7185 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7186 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7187 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7188 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7189 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7190 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7191 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7192 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7193 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7194 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7195 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7196 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7197 /usr/include/i386/int_types.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7198 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7199 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7200 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7201 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7202 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7203 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7204 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7205 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7206 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7207 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7208 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7209 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7210 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7211 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7212 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7213 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7214 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7215 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7216 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7217 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7218 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7219 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7220 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7221 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7222 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7223 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7224 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7225 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7226 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7227 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7228 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7229 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7230 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7231 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7232 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7233 /usr/include/i386/int_types.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7234 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7235 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7236 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7237 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7238 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7239 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7240 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7241 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7242 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7243 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7244 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7245 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7246 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7247 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7248 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7249 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7250 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7251 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7252 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7253 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7254 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7255 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7256 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7257 /usr/include/i386/int_types.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7258 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7259 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7260 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7261 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7262 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7263 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7264 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7265 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7266 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7267 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7268 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7269 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7270 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7271 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7272 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7273 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7274 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7275 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7276 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7277 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7278 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7279 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7280 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7281 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7282 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7283 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7284 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7285 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7286 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7287 /usr/include/i386/int_types.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7288 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7289 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7290 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7291 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7292 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7293 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7294 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7295 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7296 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7297 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7298 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7299 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7300 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7301 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7302 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7303 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7304 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7305 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7306 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7307 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7308 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7309 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7310 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7311 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7312 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7313 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7314 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7315 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7316 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7317 /usr/include/i386/int_types.h:55:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7318 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7319 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7320 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7321 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7322 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7323 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7324 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7325 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7326 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7327 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7328 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7329 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7330 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7331 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7332 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7333 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7334 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7335 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7336 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7337 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7338 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7339 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7340 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7341 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7342 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7343 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7344 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7345 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7346 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7347 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7348 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7349 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7350 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7351 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7352 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7353 /usr/include/i386/int_types.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7354 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7355 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7356 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7357 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7358 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7359 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7360 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7361 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7362 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7363 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7364 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7365 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7366 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7367 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7368 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7369 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7370 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7371 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7372 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7373 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7374 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7375 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7376 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7377 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7378 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7379 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7380 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7381 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7382 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7383 /usr/include/i386/int_types.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7384 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7385 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7386 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7387 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7388 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7389 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7390 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7391 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7392 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7393 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7394 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7395 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7396 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7397 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7398 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7399 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7400 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7401 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7402 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7403 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7404 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7405 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7406 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7407 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7408 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7409 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7410 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7411 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7412 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7413 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7414 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7415 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7416 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7417 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7418 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7419 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7420 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7421 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7422 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7423 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7424 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7425 /usr/include/i386/int_types.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7426 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7427 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7428 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7429 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7430 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7431 /usr/include/i386/int_types.h:61:9: Warning: redefinition of __BIT_TYPES_DEFINED__
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7432 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7433 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7434 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7435 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7436 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7437 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7438 /usr/include/i386/int_types.h:61:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7439 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7440 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7441 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7442 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7443 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7444 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7445 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7446 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7447 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7448 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7449 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7450 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7451 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7452 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7453 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7454 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7455 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7456 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7457 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7458 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7459 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7460 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7461 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7462 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7463 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7464 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7465 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7466 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7467 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7468 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7469 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7470 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7471 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7472 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7473 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7474 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7475 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7476 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7477 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7478 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7479 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7480 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7481 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7482 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7483 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7484 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7485 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7486 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7487 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7488 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7489 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7490 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7491 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7492 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7493 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7494 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7495 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7496 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7497 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7498 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7499 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7500 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7501 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7502 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7503 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7504 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7505 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7506 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7507 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7508 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7509 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7510 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7511 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7512 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7513 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7514 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7515 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7516 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7517 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7518 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7519 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7520 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7521 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7522 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7523 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7524 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7525 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7526 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7527 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7528 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7529 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7530 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7531 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7532 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7533 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7534 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7535 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7536 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7537 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7538 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7539 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7540 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7541 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7542 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7543 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7544 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7545 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7546 /usr/include/i386/int_types.h:63:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7547 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7548 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7549 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7550 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7551 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7552 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7553 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7554 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7555 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7556 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7557 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7558 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7559 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7560 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7561 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7562 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7563 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7564 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7565 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7566 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7567 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7568 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7569 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7570 /usr/include/i386/int_types.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7571 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7572 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7573 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7574 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7575 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7576 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7577 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7578 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7579 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7580 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7581 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7582 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7583 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7584 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7585 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7586 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7587 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7588 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7589 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7590 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7591 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7592 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7593 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7594 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7595 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7596 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7597 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7598 In file included from /usr/include/i386/ansi.h:39:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7599 In file included from /usr/include/machine/int_types.h:65:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7600 /usr/include/i386/int_types.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7601 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7602 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7603 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7604 /usr/include/i386/ansi.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7605 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7606 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7607 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7608 /usr/include/i386/ansi.h:41:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7609 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7610 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7611 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7612 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7613 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7614 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7615 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7616 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7617 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7618 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7619 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7620 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7621 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7622 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7623 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7624 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7625 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7626 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7627 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7628 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7629 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7630 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7631 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7632 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7633 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7634 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7635 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7636 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7637 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7638 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7639 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7640 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7641 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7642 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7643 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7644 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7645 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7646 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7647 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7648 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7649 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7650 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7651 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7652 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7653 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7654 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7655 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7656 /usr/include/i386/ansi.h:42:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7657 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7658 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7659 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7660 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7661 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7662 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7663 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7664 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7665 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7666 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7667 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7668 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7669 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7670 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7671 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7672 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7673 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7674 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7675 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7676 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7677 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7678 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7679 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7680 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7681 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7682 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7683 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7684 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7685 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7686 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7687 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7688 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7689 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7690 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7691 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7692 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7693 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7694 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7695 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7696 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7697 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7698 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7699 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7700 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7701 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7702 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7703 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7704 /usr/include/i386/ansi.h:43:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7705 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7706 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7707 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7708 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7709 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7710 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7711 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7712 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7713 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7714 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7715 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7716 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7717 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7718 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7719 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7720 /usr/include/i386/ansi.h:44:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7721 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7722 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7723 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7724 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7725 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7726 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7727 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7728 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7729 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7730 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7731 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7732 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7733 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7734 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7735 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7736 /usr/include/i386/ansi.h:45:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7737 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7738 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7739 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7740 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7741 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7742 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7743 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7744 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7745 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7746 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7747 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7748 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7749 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7750 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7751 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7752 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7753 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7754 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7755 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7756 /usr/include/i386/ansi.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7757 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7758 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7759 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7760 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7761 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7762 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7763 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7764 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7765 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7766 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7767 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7768 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7769 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7770 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7771 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7772 /usr/include/i386/ansi.h:47:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7773 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7774 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7775 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7776 /usr/include/i386/ansi.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7777 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7778 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7779 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7780 /usr/include/i386/ansi.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7781 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7782 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7783 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7784 /usr/include/i386/ansi.h:48:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7785 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7786 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7787 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7788 /usr/include/i386/ansi.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7789 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7790 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7791 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7792 /usr/include/i386/ansi.h:49:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7793 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7794 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7795 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7796 /usr/include/i386/ansi.h:50:9: Warning: redefinition of _BSD_CLOCK_T_
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7797 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7798 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7799 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7800 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7801 /usr/include/i386/ansi.h:50:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7802 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7803 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7804 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7805 /usr/include/i386/ansi.h:52:9: Warning: redefinition of _BSD_SIZE_T_
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7806 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7807 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7808 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7809 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7810 /usr/include/i386/ansi.h:52:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7811 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7812 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7813 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7814 /usr/include/i386/ansi.h:54:9: Warning: redefinition of _BSD_TIME_T_
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7815 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7816 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7817 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7818 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7819 /usr/include/i386/ansi.h:54:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7820 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7821 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7822 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7823 /usr/include/i386/ansi.h:58:9: Redefinition of _BSD_VA_LIST_ is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7824 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7825 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7826 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7827 /usr/include/machine/ansi.h:60:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7828 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7829 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7830 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7831 /usr/include/i386/ansi.h:60:9: Warning: redefinition of _BSD_CLOCKID_T_
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7832 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7833 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7834 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7835 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7836 /usr/include/i386/ansi.h:60:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7837 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7838 In file included from /usr/include/stdio.h:44:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7839 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7840 /usr/include/i386/ansi.h:65:9: Warning: redefinition of _BSD_WINT_T_
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7841 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7842 In file included from /usr/include/stdio.h:42:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7843 In file included from /usr/include/sys/ansi.h:35:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7844 In file included from /usr/include/machine/ansi.h:71:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7845 /usr/include/i386/ansi.h:65:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7846 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7847 /usr/include/stdio.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7848 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7849 /usr/include/stdio.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7850 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7851 /usr/include/stdio.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7852 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7853 /usr/include/stdio.h:46:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7854 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7855 /usr/include/stdio.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7856 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7857 /usr/include/stdio.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7858 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7859 /usr/include/stdio.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7860 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7861 /usr/include/stdio.h:50:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7862 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7863 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7864 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7865 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7866 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7867 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7868 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7869 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7870 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7871 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7872 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7873 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7874 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7875 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7876 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7877 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7878 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7879 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7880 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7881 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7882 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7883 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7884 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7885 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7886 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7887 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7888 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7889 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7890 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7891 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7892 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7893 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7894 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7895 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7896 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7897 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7898 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7899 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7900 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7901 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7902 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7903 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7904 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7905 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7906 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7907 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7908 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7909 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7910 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7911 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7912 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7913 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7914 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7915 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7916 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7917 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7918 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7919 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7920 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7921 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7922 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7923 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7924 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7925 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7926 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7927 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7928 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7929 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7930 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7931 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7932 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7933 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7934 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7935 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7936 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7937 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7938 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7939 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7940 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7941 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7942 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7943 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7944 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7945 /usr/include/sys/null.h:1:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7946 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7947 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7948 /usr/include/sys/null.h:13:9: Redefinition of NULL is not identical
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7949 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7950 In file included from /usr/include/stdio.h:54:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7951 /usr/include/sys/null.h:10:9: Previous definition was here
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7952 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7953 /usr/include/stdio.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7954 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7955 /usr/include/stdio.h:56:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7956 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7957 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7958 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7959 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7960 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7961 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7962 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7963 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7964 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7965 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7966 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7967 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7968 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7969 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7970 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7971 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7972 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7973 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7974 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7975 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7976 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7977 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7978 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7979 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7980 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7981 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7982 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7983 /usr/include/stdio.h:57:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7984 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7985 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7986 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7987 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7988 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7989 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7990 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7991 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7992 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7993 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7994 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7995 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7996 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7997 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7998 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7999 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8000 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8001 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8002 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8003 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8004 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8005 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8006 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8007 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8008 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8009 /usr/include/stdio.h:58:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8010 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8011 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8012 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8013 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8014 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8015 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8016 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8017 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8018 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8019 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8020 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8021 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8022 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8023 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8024 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8025 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8026 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8027 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8028 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8029 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8030 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8031 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8032 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8033 /usr/include/stdio.h:59:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8034 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8035 /usr/include/stdio.h:60:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8036 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8037 /usr/include/stdio.h:60:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8038 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8039 /usr/include/stdio.h:64:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8040 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8041 /usr/include/stdio.h:64:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8042 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8043 /usr/include/stdio.h:64:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8044 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8045 /usr/include/stdio.h:64:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8046 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8047 /usr/include/stdio.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8048 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8049 /usr/include/stdio.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8050 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8051 /usr/include/stdio.h:65:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8052 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8053 /usr/include/stdio.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8054 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8055 /usr/include/stdio.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8056 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8057 /usr/include/stdio.h:66:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8058 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8059 /usr/include/stdio.h:71:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8060 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8061 /usr/include/stdio.h:71:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8062 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8063 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8064 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8065 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8066 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8067 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8068 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8069 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8070 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8071 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8072 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8073 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8074 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8075 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8076 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8077 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8078 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8079 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8080 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8081 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8082 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8083 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8084 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8085 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8086 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8087 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8088 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8089 /usr/include/stdio.h:72:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8090 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8091 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8092 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8093 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8094 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8095 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8096 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8097 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8098 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8099 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8100 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8101 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8102 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8103 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8104 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8105 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8106 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8107 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8108 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8109 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8110 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8111 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8112 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8113 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8114 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8115 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8116 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8117 /usr/include/stdio.h:73:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8118 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8119 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8120 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8121 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8122 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8123 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8124 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8125 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8126 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8127 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8128 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8129 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8130 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8131 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8132 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8133 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8134 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8135 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8136 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8137 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8138 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8139 /usr/include/stdio.h:74:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8140 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8141 /usr/include/stdio.h:75:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8142 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8143 /usr/include/stdio.h:75:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8144 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8145 /usr/include/stdio.h:77:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8146 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8147 /usr/include/stdio.h:77:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8148 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8149 /usr/include/stdio.h:77:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8150 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8151 /usr/include/stdio.h:77:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8152 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8153 /usr/include/stdio.h:77:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8154 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8155 /usr/include/stdio.h:77:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8156 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8157 /usr/include/stdio.h:78:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8158 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8159 /usr/include/stdio.h:78:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8160 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8161 /usr/include/stdio.h:78:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8162 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8163 /usr/include/stdio.h:79:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8164 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8165 /usr/include/stdio.h:79:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8166 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8167 /usr/include/stdio.h:79:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8168 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8169 /usr/include/stdio.h:79:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8170 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8171 /usr/include/stdio.h:79:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8172 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8173 /usr/include/stdio.h:80:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8174 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8175 /usr/include/stdio.h:80:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8176 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8177 /usr/include/stdio.h:80:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8178 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8179 /usr/include/stdio.h:81:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8180 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8181 /usr/include/stdio.h:81:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8182 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8183 /usr/include/stdio.h:83:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8184 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8185 /usr/include/stdio.h:83:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8186 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8187 /usr/include/stdio.h:84:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8188 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8189 /usr/include/stdio.h:84:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8190 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8191 /usr/include/stdio.h:84:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8192 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8193 /usr/include/stdio.h:84:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8194 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8195 /usr/include/stdio.h:84:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8196 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8197 /usr/include/stdio.h:85:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8198 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8199 /usr/include/stdio.h:86:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8200 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8201 /usr/include/stdio.h:86:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8202 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8203 /usr/include/stdio.h:86:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8204 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8205 /usr/include/stdio.h:86:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8206 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8207 /usr/include/stdio.h:86:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8208 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8209 /usr/include/stdio.h:86:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8210 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8211 /usr/include/stdio.h:87:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8212 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8213 /usr/include/stdio.h:88:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8214 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8215 /usr/include/stdio.h:88:1: Expected arguments for macro __weak_extern
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8216 _flags&(__SLBF|__SWR)"); == (__SLBF|__SWR),
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8217 * _lbfsize is -_bf._size, else _lbfsize is 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8218 * if _flags&__SRD, _w is 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8219 * if _flags&__SWR, _r is 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8220 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8221 * This ensures that the getc and putc macros (or functions) never
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8222 * try to write or read from a file that is in `read' or `write' mode.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8223 * (Moreover, they can, and do, automatically switch from read mode to
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8224 * write mode, and back, on "r+" and "w+" files.)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8225 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8226 * _lbfsize is used only to make the line-buffered output stream
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8227 * code as compact as possible.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8228 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8229 * _ub, _up, and _ur are used when ungetc() pushes back more characters
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8230 * than fit in the current _bf, or when ungetc() pushes back a character
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8231 * that does not match the previous one in _bf. When this happens,
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8232 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8233 * _ub._base!=0) and _up and _ur save the current values of _p and _r.
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8234 *
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8235 * NB: see WARNING above before changing the layout of this structure!
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8236 */
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8237 typedef struct __sFILE {
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8238 unsigned char *_p;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8239 int _r;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8240 int _w;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8241 unsigned short _flags;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8242 short _file;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8243 struct __sbuf _bf;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8244 int _lbfsize;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8245
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8246 void *_cookie;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8247 int (*_close)(void *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8248 int (*_read) (void *, char *, int);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8249 fpos_t (*_seek) (void *, fpos_t, int);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8250 int (*_write)(void *, char *, int);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8251
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8252 struct __sbuf _ext;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8253
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8254 unsigned char *_up;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8255 int _ur;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8256
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8257 unsigned char _ubuf[3];
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8258 unsigned char _nbuf[1];
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8259
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8260 struct __sbuf _lb__unused;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8261
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8262 int _blksize;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8263 fpos_t _offset;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8264 } FILE;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8265
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8266 extern FILE __sF[];
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8267
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8268
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8269
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8270
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8271
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8272
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8273
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8274
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8275
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8276
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8277 void clearerr(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8278 int fclose(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8279 int feof(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8280 int ferror(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8281 int fflush(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8282 int fgetc(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8283 int fgetpos(FILE * __restrict, fpos_t * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8284 char *fgets(char * __restrict, int, FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8285 FILE *fopen( char * __restrict , char * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8286 int fprintf(FILE * __restrict , char * __restrict, ...)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8287 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8288 int fputc(int, FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8289 int fputs( char * __restrict, FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8290 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8291 FILE *freopen( char * __restrict, char * __restrict,
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8292 FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8293 int fscanf(FILE * __restrict, char * __restrict, ...)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8294 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8295 int fseek(FILE *, long, int);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8296 int fsetpos(FILE *, fpos_t *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8297 long ftell(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8298 size_t fwrite( void * __restrict, size_t, size_t, FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8299 int getc(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8300 int getchar(void);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8301 ssize_t getdelim(char ** __restrict, size_t * __restrict, int,
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8302 FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8303 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8304 void perror( char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8305 int printf( char * __restrict, ...)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8306 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8307 int putc(int, FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8308 int putchar(int);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8309 int puts( char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8310 int remove( char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8311 void rewind(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8312 int scanf( char * __restrict, ...)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8313 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8314 void setbuf(FILE * __restrict, char * __restrict);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8315 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8316 int sscanf( char * __restrict, char * __restrict, ...)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8317 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8318 FILE *tmpfile(void);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8319 int ungetc(int, FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8320 int vfprintf(FILE * __restrict, char * __restrict, char * )
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8321 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8322 int vprintf( char * __restrict, char * )
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8323 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8324 char *gets(char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8325 int sprintf(char * __restrict, char * __restrict, ...)
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8326 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8327 char *tmpnam(char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8328 int vsprintf(char * __restrict, char * __restrict,
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8329 char * )
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8330 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8331 int rename ( char *, char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8332
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8333
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8334
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8335 char *cuserid(char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8336
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8337 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8338 /usr/include/stdio.h:307:30: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8339
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8340
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8341 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8342 /usr/include/stdio.h:334:32: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8343 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8344 /usr/include/stdio.h:334:74: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8345
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8346 char *tempnam( char *, char *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8347
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8348 typedef __off_t off_t;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8349
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8350
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8351
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8352
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8353 int __srget(FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8354 int __swbuf(int, FILE *);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8355
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8356
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8357
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8358 In file included from t08.c:1:2:
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8359 /usr/include/stdio.h:495:30: Invalid integer constant
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8360 int d =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8361 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8362 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8363 int e =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8364 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8365 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8366 int f =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8367 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8368 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8369 int
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8370 main()
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8371 {
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8372 int a, b, c;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8373 a = 2 > 1 ? 0 : 0 ? 1 : 1;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8374 b = (2 > 1 ? 0 : 0) ? 1 : 1;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8375 c = 2 > 1 ? 0 : (0 ? 1 : 1);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8376 printf("%d %d %d\n", a, b, c);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8377 printf("%d %d %d\n", d, e, f);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8378 return 0;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8379 }
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8380 FAILED