diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/common/pathstuff.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5bfbe9b..8d3b633 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-03-01 Sergio Durigan Junior <sergiodj@redhat.com> + + PR gdb/22907 + * common/pathstuff.c: Conditionally include "<windows.h>". + 2018-03-01 Georg Sauthoff <mail@georg.so> PR gdb/22888 diff --git a/gdb/common/pathstuff.c b/gdb/common/pathstuff.c index fc574dc..8c4093f 100644 --- a/gdb/common/pathstuff.c +++ b/gdb/common/pathstuff.c @@ -23,6 +23,10 @@ #include "filenames.h" #include "gdb_tilde_expand.h" +#ifdef USE_WIN32API +#include <windows.h> +#endif + /* See common/pathstuff.h. */ gdb::unique_xmalloc_ptr<char> |