Merge branch 'js/run-command-updates' (early part)
* 'js/run-command-updates' (early part): MinGW: truncate exit()'s argument to lowest 8 bits
This commit is contained in:
commit
ce4f404c6f
@ -92,6 +92,8 @@ static inline int fcntl(int fd, int cmd, long arg)
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
/* bash cannot reliably detect negative return codes as failure */
|
||||
#define exit(code) exit((code) & 0xff)
|
||||
|
||||
/*
|
||||
* simple adaptors
|
||||
|
Loading…
Reference in New Issue
Block a user