mailing list of musl libc
 help / color / mirror / code / Atom feed
8c163435faf215a24f8e9435d7d05c4b18b89916 blob 245 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 sscanf(const char *s, const char *fmt, ...)
{
	int ret;
	va_list ap;
	va_start(ap, fmt);
	ret = vsscanf(s, fmt, ap);
	va_end(ap);
	return ret;
}

weak_alias(sscanf, __isoc99_sscanf);
debug log:

solving 8c16343 ...
found 8c16343 in https://inbox.vuxu.org/musl/20120722183828.20b71c9d@newbook/
found a1cea69 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 a1cea699b1f12a437b0fa1075d659df1dcb3476c	src/stdio/sscanf.c

applying [1/1] https://inbox.vuxu.org/musl/20120722183828.20b71c9d@newbook/
diff --git a/src/stdio/sscanf.c b/src/stdio/sscanf.c
index a1cea69..8c16343 100644

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

index at:
100644 8c163435faf215a24f8e9435d7d05c4b18b89916	src/stdio/sscanf.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).