comparison src/unexec.c @ 29650:2411aacca614

(toplevel) [COFF]: Include coff.h.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 14 Jun 2000 13:34:54 +0000
parents 1f418e353dd7
children 1e6eeead2f1d
comparison
equal deleted inserted replaced
29649:43b4ecc0b133 29650:2411aacca614
169 #define PERROR(file) report_error (file, new) 169 #define PERROR(file) report_error (file, new)
170 #endif 170 #endif
171 171
172 #ifndef CANNOT_DUMP /* all rest of file! */ 172 #ifndef CANNOT_DUMP /* all rest of file! */
173 173
174 #ifdef COFF
175 #include <coff.h>
176 #else
174 #ifdef COFF_ENCAPSULATE 177 #ifdef COFF_ENCAPSULATE
175 int need_coff_header = 1; 178 int need_coff_header = 1;
176 #include <coff-encap/a.out.encap.h> /* The location might be a poor assumption */ 179 #include <coff-encap/a.out.encap.h> /* The location might be a poor assumption */
177 #else 180 #else
178 #ifdef MSDOS 181 #ifdef MSDOS
203 206
204 #else /* not MSDOS */ 207 #else /* not MSDOS */
205 #include <a.out.h> 208 #include <a.out.h>
206 #endif /* not MSDOS */ 209 #endif /* not MSDOS */
207 #endif 210 #endif
211 #endif /* not COFF */
208 212
209 /* Define getpagesize if the system does not. 213 /* Define getpagesize if the system does not.
210 Note that this may depend on symbols defined in a.out.h. */ 214 Note that this may depend on symbols defined in a.out.h. */
211 #include "getpagesize.h" 215 #include "getpagesize.h"
212 216