20010925-1.c: Changed the memcpy declaration.

* gcc.c-torture/execute/20010925-1.c: Changed the
        memcpy declaration.

From-SVN: r61992
This commit is contained in:
D.Venkatasubramanian 2003-01-28 18:33:19 +00:00 committed by Richard Henderson
parent 10154ff81b
commit bffcd064da
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-01-28 D.Venkatasubramanian <dvenkat@noida.hcltech.com>
* gcc.c-torture/execute/20010925-1.c: Changed the
memcpy declaration.
2003-01-28 Nathan Sidwell <nathan@codesourcery.com> 2003-01-28 Nathan Sidwell <nathan@codesourcery.com>
PR c++/3902 PR c++/3902

View File

@ -1,7 +1,7 @@
extern void exit(int); extern void exit(int);
extern void abort (void); extern void abort (void);
extern void * memcpy (void *, const void *, unsigned int); extern void * memcpy (void *, const void *, __SIZE_TYPE__);
int foo (void *, void *, unsigned int c); int foo (void *, void *, unsigned int c);
int src[10]; int src[10];