mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
e51c1aa3d4
Patch from Anonymous.
25 lines
643 B
C
25 lines
643 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* const sys_errlist[];
|
|
extern int sys_nerr;
|
|
extern __thread int errno;
|
|
|
|
#define errno errno
|
|
|
|
__END_DECLS
|