abis/mlibc: Fix overlapping file constants

Signed-off-by: Dennisbonke <admin@dennisbonke.com>
This commit is contained in:
Dennisbonke 2020-06-09 19:23:55 +02:00 committed by Geert Custers
parent 4519f07416
commit 71bf6700db

View file

@ -48,26 +48,26 @@ typedef long sigset_t;
#ifdef __MLIBC_POSIX_OPTION
#define SIGALRM 8
#define SIGBUS 9
#define SIGCHLD 10
#define SIGCONT 11
#define SIGHUP 12
#define SIGKILL 13
#define SIGPIPE 14
#define SIGQUIT 15
#define SIGSTOP 16
#define SIGTSTP 17
#define SIGTTIN 18
#define SIGTTOU 19
#define SIGUSR1 20
#define SIGUSR2 21
#define SIGSYS 22
#define SIGTRAP 23
#define SIGURG 24
#define SIGVTALRM 25
#define SIGXCPU 26
#define SIGXFSZ 27
#define SIGWINCH 28
#define SIGBUS 13
#define SIGCHLD 14
#define SIGCONT 15
#define SIGHUP 16
#define SIGKILL 17
#define SIGPIPE 18
#define SIGQUIT 19
#define SIGSTOP 20
#define SIGTSTP 21
#define SIGTTIN 22
#define SIGTTOU 23
#define SIGUSR1 24
#define SIGUSR2 25
#define SIGSYS 26
#define SIGTRAP 27
#define SIGURG 28
#define SIGVTALRM 29
#define SIGXCPU 30
#define SIGXFSZ 31
#define SIGWINCH 32
#define SIGUNUSED SIGSYS
#define SA_NOCLDSTOP (1 << 0)