Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/coff/go32exe.h')
-rw-r--r--include/coff/go32exe.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/coff/go32exe.h b/include/coff/go32exe.h
index c85da0cc3..2248ff2f4 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