repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sparc64: Remove unwind information from signal return stubs [BZ#31244]
[glibc.git]
/
sysdeps
/
ieee754
/
ldbl-opt
/
nldbl-isoc99_sscanf.c
blob
52e1bd5d2a68f968b67aa813e36db1ffb4bd523a
1
#include
"nldbl-compat.h"
2
3
int
4
attribute_hidden
5
__isoc99_sscanf
(
const char
*
s
,
const char
*
fmt
, ...)
6
{
7
va_list
arg
;
8
int
done
;
9
10
va_start
(
arg
,
fmt
);
11
done
=
__nldbl___isoc99_vsscanf
(
s
,
fmt
,
arg
);
12
va_end
(
arg
);
13
14
return
done
;
15
}