ladybird/Libraries/LibC/errno.h
Andreas Kling e51c1aa3d4 LibC: sys_errlist should be const char* const
Patch from Anonymous.
2019-10-17 09:18:01 +02:00

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