repo.or.cz
/
glibc
/
pb-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* include/stdio.h (__asprintf_chk, __dprintf_chk,
[glibc/pb-stable.git]
/
sysdeps
/
ieee754
/
ldbl-opt
/
nldbl-dprintf_chk.c
blob
b3e23591281596d3b49efc98c00bddc813e89bd0
1
#include
"nldbl-compat.h"
2
3
attribute_hidden
4
int
5
__dprintf_chk
(
int
d
,
int
flag
,
const char
*
fmt
, ...)
6
{
7
va_list
arg
;
8
int
done
;
9
10
va_start
(
arg
,
fmt
);
11
done
=
__nldbl___vdprintf_chk
(
d
,
flag
,
fmt
,
arg
);
12
va_end
(
arg
);
13
14
return
done
;
15
}