musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/stdio/vdprintf.c 7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/stdio/vdprintf.c b/src/stdio/vdprintf.c
index bfb1b0a9..35ed6e0b 100644
--- a/src/stdio/vdprintf.c
+++ b/src/stdio/vdprintf.c
@@ -1,11 +1,16 @@
#include "stdio_impl.h"
+static size_t wrap_write(FILE *f, const unsigned char *buf, size_t len)
+{
+ return __stdio_write(f, buf, len);
+}
+
int vdprintf(int fd, const char *fmt, va_list ap)
{
int r;
char buf[BUFSIZ];
FILE f = {
- .fd = fd, .lbf = EOF, .write = __stdio_write,
+ .fd = fd, .lbf = EOF, .write = wrap_write,
.buf = buf+UNGET, .buf_size = sizeof buf - UNGET
};
r = vfprintf(&f, fmt, ap);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月15日 10:26:03 +0000

AltStyle によって変換されたページ (->オリジナル) /