syscall_ret.c\internal\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/internal/syscall_ret.c
blob: a3f471368fc36ec6ebadbfe37f81ace83aaa4c7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <errno.h>
#include "syscall.h"
long __syscall_ret(unsigned long r)
{
	if (r > -4096UL) {
		errno = -r;
		return -1;
	}
	return r;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月11日 00:17:36 +0000

AltStyle によって変換されたページ (->オリジナル) /