Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
eval
/
unqual-comma.c
blob: 11546d22348aa74a37754aa4d623adf7b3f101c8 [
file
] [
log
] [
blame
]
#define
__unqual_typeof
(
x
)
typeof
(((
void
)
0
,
(
x
)))
int
*
foo
(
volatile
int
x
);
int
*
foo
(
volatile
int
x
)
{
extern
__unqual_typeof
(
x
)
y
;
return
&
y
;
}
/*
* check-name: unqual-comma
*/