Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr41163.c
blob: c224837837695d12945735cd774e4a11a41d0c9c [
file
] [
log
] [
blame
]
struct
option
{
void
*
value
;
};
void
parse_options
(
struct
option
*);
void
cmd_grep
(
void
)
{
struct
option options
[]
=
{
{
&
options
}
};
parse_options
(
options
);
}