OSDN Git Service

Fix misapplied patch.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20001024-1.c
1 /* Copyright (C) 2000  Free Software Foundation  */
2 /* Contributed by Nathan Sidwell <nathan@codesourcery.com> */
3
4 typedef __SIZE_TYPE__ size_t;
5
6 extern void *memset(void *, int, size_t);
7
8 struct Baz;
9
10 void quux(struct Baz *context)
11 {
12   memset(context, 0, 4);
13 }