We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2219a9f commit 790bcbdCopy full SHA for 790bcbd
1 file changed
port/generic/stdio.c
@@ -3,6 +3,7 @@
3
* Copyright(c) 2025 John Sanpe <sanpeqf@gmail.com>
4
*/
5
6
+#include <bfdev/xprintf.h>
7
#include <port/stdio.h>
8
#include <export.h>
9
@@ -12,5 +13,5 @@ __bfdev_weak int
12
13
bfport_vsnprintf(char *s, bfdev_size_t maxlen, const char *fmt,
14
bfdev_va_list arg)
15
{
- return 0;
16
+ return bfdev_xnprintf(s, maxlen, fmt, arg);
17
}
0 commit comments