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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
 
#include <stdlib.h>
#include "syscall.h"

#if __STDC_VERSION__ < 201112L
# if __GNUC__
#  define _Noreturn __attribute__((__noreturn__))
# else
#  define _Noreturn
# endif
#endif

_Noreturn void _Exit(int ec)
{
	__syscall(SYS_exit_group, ec);
	__syscall(SYS_exit, ec);
}
debug log:

solving ea85e4a ...
found ea85e4a in https://inbox.vuxu.org/musl/20120905135311.43281a54@gmail.com/
found 6ceb143 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 6ceb14371cff7b29216b2d573fd083e1396e95cf	src/exit/_Exit.c

applying [1/1] https://inbox.vuxu.org/musl/20120905135311.43281a54@gmail.com/
diff --git a/src/exit/_Exit.c b/src/exit/_Exit.c
index 6ceb143..ea85e4a 100644

Checking patch src/exit/_Exit.c...
Applied patch src/exit/_Exit.c cleanly.

index at:
100644 d67dc7b9c8fafc48295bcf37be0fb82a85289a9b	src/exit/_Exit.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).