modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20001024-1.c (about) 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 }