Sign in
third-party-mirror
/
GRTEv4
/
cf41cedf52c87cf4f27c61e4eb8444ecb811ab13
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
stdio-common
/
bug21.c
blob: d22b9c1a9717a1976abe049296e3da5a7865ff8d [
file
] [
log
] [
blame
]
#include
<stdio.h>
static
int
do_test
(
void
)
{
static
const
char
buf
[]
=
" "
;
char
*
str
;
int
r
=
sscanf
(
buf
,
"%as"
,
&
str
);
printf
(
"%d %p\n"
,
r
,
str
);
return
r
!=
-
1
||
str
!=
NULL
;
}
#define
TEST_FUNCTION do_test
()
#include
"../test-skeleton.c"