Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Adélie Linux
gcompat
Commits
1cc7f499
Commit
1cc7f499
authored
Jul 25, 2020
by
Michał Kazior
Browse files
wchar: implement __vfwprintf_chk
Signed-off-by:
Michal Kazior
<
kazikcz@gmail.com
>
parent
715b50ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgcompat/wchar.c
View file @
1cc7f499
...
...
@@ -6,6 +6,19 @@
int
__vswprintf_chk
(
wchar_t
*
s
,
size_t
n
,
int
flag
,
size_t
slen
,
const
wchar_t
*
format
,
va_list
ap
);
/**
* Convert formatted wide-character output, with stack checking
*
* LSB 5.0: LSB-Core-generic/baselib---vfwprintf-chk-1.html
*/
int
__vfwprintf_chk
(
FILE
*
fp
,
int
flag
,
const
wchar_t
*
format
,
va_list
ap
)
{
assert
(
fp
!=
NULL
);
assert
(
format
!=
NULL
);
return
vfwprintf
(
fp
,
format
,
ap
);
}
/**
* Convert formatted wide-character output, with stack checking
*
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment