1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-22 14:07:43 +00:00
serenity/Libraries/LibC/errno.h

22 lines
607 B
C

#pragma once
#include <errno_numbers.h>
#include <sys/cdefs.h>
#define __RETURN_WITH_ERRNO(rc, good_ret, bad_ret) \
do { \
if (rc < 0) { \
errno = -rc; \
return (bad_ret); \
} \
errno = 0; \
return (good_ret); \
} while (0)
__BEGIN_DECLS
extern const char* sys_errlist[];
extern int sys_nerr;
extern int errno;
__END_DECLS