]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Include system.h if it was not already included
authorMichael Meissner <meissner@cygnus.com>
Fri, 10 Jul 1998 16:12:26 +0000 (16:12 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Fri, 10 Jul 1998 16:12:26 +0000 (16:12 +0000)
From-SVN: r21053

gcc/ChangeLog
gcc/varray.h

index 11ccac4aba26d3c0fae61f61b7d7bc48bfb40352..4f84f3422ef71c59f4524232f4337ab3423d6541 100644 (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
index 373bb5c4f17897223f94292bbb2101754ad2dbae..df3ca313e8568d8ea9a727f2f0ad8605bab261eb 100644 (file)
 #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];