diff options
Diffstat (limited to 'include/coff/go32exe.h')
-rw-r--r-- | include/coff/go32exe.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/coff/go32exe.h b/include/coff/go32exe.h index c85da0c..2248ff2 100644 --- a/include/coff/go32exe.h +++ b/include/coff/go32exe.h @@ -16,11 +16,9 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -#define STUBSIZE 2048 - struct external_filehdr_go32_exe { - char stub[STUBSIZE];/* the stub to load the image */ + char stub[GO32_STUBSIZE]; /* the stub to load the image */ /* the standard COFF header */ char f_magic[2]; /* magic number */ char f_nscns[2]; /* number of sections */ @@ -34,4 +32,4 @@ struct external_filehdr_go32_exe #undef FILHDR #define FILHDR struct external_filehdr_go32_exe #undef FILHSZ -#define FILHSZ STUBSIZE+20 +#define FILHSZ GO32_STUBSIZE+20 |