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 
quux(struct Baz * context)10 void quux(struct Baz *context)
11 {
12   memset(context, 0, 4);
13 }
14