ladybird/Libraries/LibC/errno.h
Andreas Kling 31ba7ba2cc LibC: #define errno errno
This makes the binutils port build again, after the TLS changes.
2019-09-08 14:20:13 +02:00

24 lines
637 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 __thread int errno;
#define errno errno
__END_DECLS