All: Fix *nix build
Jeffrey Pfau jeffrey@endrift.com
Mon, 23 Feb 2015 23:49:40 -0800
2 files changed,
1 insertions(+),
1 deletions(-)
M
src/debugger/gdb-stub.c
→
src/debugger/gdb-stub.c
@@ -5,7 +5,6 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "gdb-stub.h" -#include <errno.h> #include <signal.h> #ifndef SIGTRAP
M
src/util/socket.h
→
src/util/socket.h
@@ -19,6 +19,7 @@
#define SOCKET_FAILED(s) ((s) == INVALID_SOCKET) typedef SOCKET Socket; #else +#include <errno.h> #include <fcntl.h> #include <netinet/in.h> #include <netinet/tcp.h>