summaryrefslogtreecommitdiff
path: root/Libraries/LibC/errno.h
blob: 39e59a878a46bb7d81f8cb165e1b24287bb9ab3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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