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
* elf/elf.h (HWCAP_SPARC_BLKINIT): New macro.
[glibc.git]
/
sysdeps
/
ieee754
/
ldbl-opt
/
nldbl-dprintf.c
blob
6e26db2a24702351ddd1f3db723431132f9b1d99
1
#include
"nldbl-compat.h"
2
3
attribute_hidden
4
int
5
dprintf
(
int
d
,
const char
*
fmt
, ...)
6
{
7
va_list
arg
;
8
int
done
;
9
10
va_start
(
arg
,
fmt
);
11
done
=
__nldbl_vdprintf
(
d
,
fmt
,
arg
);
12
va_end
(
arg
);
13
14
return
done
;
15
}