* gcc.dg/m-un-2.c: Fix the typedef of size_t.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 3 May 2003 13:34:43 +0000 (13:34 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 3 May 2003 13:34:43 +0000 (13:34 +0000)
From-SVN: r66426

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/m-un-2.c

index 3109c7556144a6e3fcca849420865af10615fbc5..90f0c4ff2003cbb696916945c8c816650dc9bfb6 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-03  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * gcc.dg/m-un-2.c: Fix the typedef of size_t.
+
 2003-05-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
 
        PR c++/9364, c++/10553, c++/10586
index e31646b6f204c29630910bbc02231b179f46f4b9..bb617369163d799863f0e6c380eba068bf428d53 100644 (file)
@@ -1,7 +1,7 @@
 /* { dg-do compile } */
 /* { dg-options "-W -Wall" } */
 
-typedef unsigned long size_t;
+typedef __SIZE_TYPE__ size_t;
 extern void* malloc (size_t);
 extern void free (void*);
 extern void* realloc (void*, size_t);