mailing list of musl libc
 help / color / mirror / code / Atom feed
013787a4d092175fd9e356f617ebaa6b0db32dbf blob 419 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
 
#include "syscall.h"
#include <stdarg.h>

#undef syscall

#ifndef SYSCALL_STATIC
long syscall(long n, ...)
{
	va_list ap;
	syscall_arg_t a,b,c,d,e,f;
	va_start(ap, n);
	a=va_arg(ap, syscall_arg_t);
	b=va_arg(ap, syscall_arg_t);
	c=va_arg(ap, syscall_arg_t);
	d=va_arg(ap, syscall_arg_t);
	e=va_arg(ap, syscall_arg_t);
	f=va_arg(ap, syscall_arg_t);
	va_end(ap);
	return __syscall_ret(__syscall(n,a,b,c,d,e,f));
}
#endif
debug log:

solving 013787a4 ...
found 013787a4 in https://inbox.vuxu.org/musl/VI1PR0502MB38858E8FC5B89323C105D080E73A0@VI1PR0502MB3885.eurprd05.prod.outlook.com/
found 9d435a97 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 9d435a978579d6121f9c6b9eadbbc3a0a92fe778	src/misc/syscall.c

applying [1/1] https://inbox.vuxu.org/musl/VI1PR0502MB38858E8FC5B89323C105D080E73A0@VI1PR0502MB3885.eurprd05.prod.outlook.com/
diff --git a/src/misc/syscall.c b/src/misc/syscall.c
index 9d435a97..013787a4 100644

Checking patch src/misc/syscall.c...
Applied patch src/misc/syscall.c cleanly.

index at:
100644 013787a4d092175fd9e356f617ebaa6b0db32dbf	src/misc/syscall.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).