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