blob: 59208cde10740df37465665f61092ab61f66e2c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright (C) 2000 Free Software Foundation */
/* Contributed by Nathan Sidwell <nathan@codesourcery.com> */
typedef __SIZE_TYPE__ size_t;
extern void *memset(void *, int, size_t);
struct Baz;
void quux(struct Baz *context)
{
memset(context, 0, 4);
}
|