diff options
author | Ron Yorston <rmy@pobox.com> | 2019-03-31 09:54:17 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-03-31 09:54:17 +0100 |
commit | f6228015354adbdbbc736b33296112bebbc96cf3 (patch) | |
tree | 83593f82bdf88e1cedc1c3993e1c7ae91b817922 /include | |
parent | 61e0e3160a8be3ed8488b09200a5dca1bd1b21b4 (diff) | |
download | busybox-w32-f6228015354adbdbbc736b33296112bebbc96cf3.tar.gz busybox-w32-f6228015354adbdbbc736b33296112bebbc96cf3.tar.bz2 busybox-w32-f6228015354adbdbbc736b33296112bebbc96cf3.zip |
win32: fix compilation error; update default configurations
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 8b295814c..1ec5292d8 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -181,6 +181,7 @@ int winansi_getc(FILE *stream); | |||
181 | #define WEXITSTATUS(x) (((x) & 0xff00) >> 8) | 181 | #define WEXITSTATUS(x) (((x) & 0xff00) >> 8) |
182 | #define WIFSIGNALED(x) (((signed char) (((x) & 0x7f) + 1) >> 1) > 0) | 182 | #define WIFSIGNALED(x) (((signed char) (((x) & 0x7f) + 1) >> 1) > 0) |
183 | #define WCOREDUMP(x) 0 | 183 | #define WCOREDUMP(x) 0 |
184 | #define WIFSTOPPED(x) 0 | ||
184 | 185 | ||
185 | int mingw_system(const char *cmd); | 186 | int mingw_system(const char *cmd); |
186 | #define system mingw_system | 187 | #define system mingw_system |