all repos — mgba @ a0b94db9a78a6482579edd35e6eefeb4b15bb257

mGBA Game Boy Advance Emulator

All: Fix *nix build
Jeffrey Pfau jeffrey@endrift.com
Mon, 23 Feb 2015 23:49:40 -0800
commit

a0b94db9a78a6482579edd35e6eefeb4b15bb257

parent

5d1b05c9904bdc3dc285f0278b3f9cb928640ac8

2 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/debugger/gdb-stub.csrc/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.hsrc/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>