* gcc.dg/m-un-2.c: Fix the typedef of size_t.
From-SVN: r66426
This commit is contained in:
parent
070588f06e
commit
c4e2d744f5
@ -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>
|
2003-05-03 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
|
||||||
|
|
||||||
PR c++/9364, c++/10553, c++/10586
|
PR c++/9364, c++/10553, c++/10586
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* { dg-do compile } */
|
/* { dg-do compile } */
|
||||||
/* { dg-options "-W -Wall" } */
|
/* { dg-options "-W -Wall" } */
|
||||||
|
|
||||||
typedef unsigned long size_t;
|
typedef __SIZE_TYPE__ size_t;
|
||||||
extern void* malloc (size_t);
|
extern void* malloc (size_t);
|
||||||
extern void free (void*);
|
extern void free (void*);
|
||||||
extern void* realloc (void*, size_t);
|
extern void* realloc (void*, size_t);
|
||||||
|
Loading…
Reference in New Issue
Block a user