Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / pr41163.c
blobc224837837695d12945735cd774e4a11a41d0c9c
1 struct option {
2 void *value;
3 };
4 void parse_options (struct option *);
5 void cmd_grep(void)
7 struct option options[] = { { &options } };
8 parse_options(options);