outform: make OF_DOS include OF_COFF

DJGPP uses COFF as the file format.  Since DJGPP is widely used in the
(remaining) DOS world, include OF_COFF in OF_DOS.
This commit is contained in:
H. Peter Anvin 2008-02-17 18:54:13 -08:00
parent 134b94665d
commit 27713625c1

View file

@ -117,6 +117,9 @@
#ifndef OF_BIN
#define OF_BIN
#endif
#ifndef OF_COFF
#define OF_COFF /* COFF is used by DJGPP */
#endif
#ifndef OF_WIN32
#define OF_WIN32
#endif