Include system.h if it was not already included

From-SVN: r21053
This commit is contained in:
Michael Meissner 1998-07-10 16:12:26 +00:00 committed by Michael Meissner
parent a87ef32399
commit 4dfb04c6f4
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Fri Jul 10 19:06:59 1998 Michael Meissner <meissner@cygnus.com>
* varray.h: Include system.h if it hasn't already been included
before to get size_t declared.
Fri Jul 10 12:53:58 1998 David S. Miller <davem@pierdol.cobaltmicro.com>
* jump.c (jump_optimize): If after_regscan and our transformations

View File

@ -30,6 +30,10 @@
#include "machmode.h"
#endif
#ifndef __GCC_SYSTEM_H__
#include "system.h"
#endif
/* Union of various array types that are used. */
typedef union varray_data_tag {
char c[1];