mailing list of musl libc
 help / color / mirror / code / Atom feed
e09469d8aa656b211ae2a82802c6947ee62ba0ed blob 299 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 
#include <stdio.h>
#include <stdarg.h>

int __dprintf_chk(int fd, int flag, const char *fmt, ...)
{
	int ret;
	va_list ap;
	va_start(ap, fmt);
	ret = vdprintf(fd, fmt, ap);
	va_end(ap);
	return ret;
}

int __vdprintf(int fd, int flag, const char *fmt, va_list ap)
{
	return vdprintf(fd, fmt, ap);
}
debug log:

solving e09469d ...
found e09469d in https://inbox.vuxu.org/musl/1434509291-28997-1-git-send-email-josiahw@gmail.com/

applying [1/1] https://inbox.vuxu.org/musl/1434509291-28997-1-git-send-email-josiahw@gmail.com/
diff --git a/src/compat/dprintf_chk.c b/src/compat/dprintf_chk.c
new file mode 100644
index 0000000..e09469d

Checking patch src/compat/dprintf_chk.c...
Applied patch src/compat/dprintf_chk.c cleanly.

index at:
100644 e09469d8aa656b211ae2a82802c6947ee62ba0ed	src/compat/dprintf_chk.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).