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
Fix Wundef warning for __STDC_VERSION__
[glibc.git]
/
sysdeps
/
ieee754
/
ldbl-opt
/
nldbl-fwprintf_chk.c
blob
09731cf29d8eb7a0191e0e1910109a63b0bf0342
1
#include
"nldbl-compat.h"
2
3
int
4
attribute_hidden
5
__fwprintf_chk
(
FILE
*
stream
,
int
flag
,
const wchar_t
*
fmt
, ...)
6
{
7
va_list
arg
;
8
int
done
;
9
10
va_start
(
arg
,
fmt
);
11
done
=
__nldbl___vfwprintf_chk
(
stream
,
flag
,
fmt
,
arg
);
12
va_end
(
arg
);
13
14
return
done
;
15
}