mailing list of musl libc
 help / color / mirror / code / Atom feed
4f159e0b528fd05eb6cde5ae6ec688d667b20e51 blob 171 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
 
#include <errno.h>
#include <unistd.h>

long __syscall_ret(unsigned long r)
{
	if (r >= (unsigned long)-1 - 4096) {
		errno = -(long)r;
		return -1;
	}
	return (long)r;
}
debug log:

solving 4f159e0 ...
found 4f159e0 in https://git.vuxu.org/mirror/musl/

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).