mailing list of musl libc
 help / color / mirror / code / Atom feed
155f8ac9b46325ad8da5829f75765633d1d79d9b blob 239 bytes (raw)

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

int fscanf(FILE *f, const char *fmt, ...)
{
	int ret;
	va_list ap;
	va_start(ap, fmt);
	ret = vfscanf(f, fmt, ap);
	va_end(ap);
	return ret;
}

weak_alias(fscanf, __isoc99_fscanf);
debug log:

solving 155f8ac ...
found 155f8ac in https://inbox.vuxu.org/musl/20120722183828.20b71c9d@newbook/
found 51fc9b3 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 51fc9b30fb1ef1c58d6923da90f9b2ad3324a4c4	src/stdio/fscanf.c

applying [1/1] https://inbox.vuxu.org/musl/20120722183828.20b71c9d@newbook/
diff --git a/src/stdio/fscanf.c b/src/stdio/fscanf.c
index 51fc9b3..155f8ac 100644

Checking patch src/stdio/fscanf.c...
Applied patch src/stdio/fscanf.c cleanly.

index at:
100644 155f8ac9b46325ad8da5829f75765633d1d79d9b	src/stdio/fscanf.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).