summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorpolaris- <nagatospam@gmail.com>2015-10-29 11:17:29 +0100
committerpolaris- <nagatospam@gmail.com>2015-10-29 11:17:29 +0100
commitb6422038b57c32c9842d8da506d40cc6872a1546 (patch)
treebd88caf82baccf3dad74e688b3db22d41854845a /src
parentAdd some headers so TravisCI will hopefully work (diff)
downloadyuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar
yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.gz
yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.bz2
yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.lz
yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.xz
yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.zst
yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/gdbstub/gdbstub.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index 5568df21b..e37a2efd7 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -5,12 +5,12 @@
// Originally written by Sven Peter <sven@fail0verflow.com> for anergistic.
#include <algorithm>
+#include <climits>
#include <csignal>
#include <cstdarg>
#include <cstdio>
#include <cstring>
#include <fcntl.h>
-#include <limits.h>
#include <map>
#include <numeric>
@@ -34,7 +34,7 @@
#include "core/core.h"
#include "core/memory.h"
#include "core/arm/arm_interface.h"
-#include "gdbstub.h"
+#include "core/gdbstub/gdbstub.h"
const int GDB_BUFFER_SIZE = 10000;