Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
viro
/
sparse
/
25e96501f249b27cb930a09aba5aeb33a047d14c
/
.
/
validation
/
function-pointer-inheritance.c
blob: 0b24e45882f2bb35c4ea9620ecf7bc4678dbe937 [
file
]
extern
int
foo
(
int
f
(
int
,
void
*));
int
foo
(
int
(*
f
)(
int
,
void
*))
{
return
0
;
}
/*
* check-name: Function pointer inheritance
*/