rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr41163.c

11 lines
171 B
C

struct option {
void *value;
};
void parse_options (struct option *);
void cmd_grep(void)
{
struct option options[] = { { &options } };
parse_options(options);
}