Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
f0e6938bffe0e21cde6e60ff63ed8877d4d04e26
/
.
/
validation
/
backend
/
string-value.c
blob: ae0b7b745aa18ce1749a502a61da6b23c08274b2 [
file
] [
log
] [
blame
]
extern
void
use
(
const
char
*);
const
char
*
ret
(
void
)
{
return
"abc"
;
}
const
char
*
add
(
void
)
{
return
"def"
+
1
;
}
void
call
(
void
)
{
use
(
"ijk"
);
}
/*
* check-name: string-value
* check-command: sparsec -Wno-decl -c $file -o tmp.o
*/