* gcc.dg/m-un-2.c: Fix the typedef of size_t.

From-SVN: r66426
This commit is contained in:
Kazu Hirata 2003-05-03 13:34:43 +00:00 committed by Kazu Hirata
parent 070588f06e
commit c4e2d744f5
2 changed files with 5 additions and 1 deletions

View 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

View 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);