diff options
author | Eli Zaretskii <eliz@gnu.org> | 2020-01-06 21:54:21 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2020-01-06 21:54:21 +0200 |
commit | 66182876b46d40163e81504f7fa4f206268cb83c (patch) | |
tree | 2c4b2632de124c6ab99732232223e3e5add5c219 /gdb/gdbsupport/gdb_wait.c | |
parent | cbfa85811792ca8e96ace40bef0aaaf507e54bcc (diff) | |
download | gdb-66182876b46d40163e81504f7fa4f206268cb83c.zip gdb-66182876b46d40163e81504f7fa4f206268cb83c.tar.gz gdb-66182876b46d40163e81504f7fa4f206268cb83c.tar.bz2 |
Fix MinGW native compilation of gdb/gdbsupport/gdb_wait.c
gdb/ChangeLog
2020-01-06 Eli Zaretskii <eliz@gnu.org>
* gdbsupport/gdb_wait.c: Include <signal.h> instead of
gdb/signals.h, as we are now using native signal symbols.
Diffstat (limited to 'gdb/gdbsupport/gdb_wait.c')
-rw-r--r-- | gdb/gdbsupport/gdb_wait.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbsupport/gdb_wait.c b/gdb/gdbsupport/gdb_wait.c index 037ba64..6facc48 100644 --- a/gdb/gdbsupport/gdb_wait.c +++ b/gdb/gdbsupport/gdb_wait.c @@ -34,7 +34,7 @@ false positives is justified by the utility of reporting the terminating signal in the "normal" cases. */ -# include "gdb/signals.h" /* for enum gdb_signal */ +# include <signal.h> # define WIN32_LEAN_AND_MEAN # include <windows.h> /* for EXCEPTION_* constants */ |