diff options
| author | 2015-10-29 06:17:29 -0400 | |
|---|---|---|
| committer | 2015-10-29 06:17:29 -0400 | |
| commit | b6422038b57c32c9842d8da506d40cc6872a1546 (patch) | |
| tree | bd88caf82baccf3dad74e688b3db22d41854845a /src/core/gdbstub/gdbstub.cpp | |
| parent | Add some headers so TravisCI will hopefully work (diff) | |
| download | yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.gz yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.tar.xz yuzu-b6422038b57c32c9842d8da506d40cc6872a1546.zip | |
Change headers
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 4 |
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 @@ | |||
| 5 | // Originally written by Sven Peter <sven@fail0verflow.com> for anergistic. | 5 | // Originally written by Sven Peter <sven@fail0verflow.com> for anergistic. |
| 6 | 6 | ||
| 7 | #include <algorithm> | 7 | #include <algorithm> |
| 8 | #include <climits> | ||
| 8 | #include <csignal> | 9 | #include <csignal> |
| 9 | #include <cstdarg> | 10 | #include <cstdarg> |
| 10 | #include <cstdio> | 11 | #include <cstdio> |
| 11 | #include <cstring> | 12 | #include <cstring> |
| 12 | #include <fcntl.h> | 13 | #include <fcntl.h> |
| 13 | #include <limits.h> | ||
| 14 | #include <map> | 14 | #include <map> |
| 15 | #include <numeric> | 15 | #include <numeric> |
| 16 | 16 | ||
| @@ -34,7 +34,7 @@ | |||
| 34 | #include "core/core.h" | 34 | #include "core/core.h" |
| 35 | #include "core/memory.h" | 35 | #include "core/memory.h" |
| 36 | #include "core/arm/arm_interface.h" | 36 | #include "core/arm/arm_interface.h" |
| 37 | #include "gdbstub.h" | 37 | #include "core/gdbstub/gdbstub.h" |
| 38 | 38 | ||
| 39 | const int GDB_BUFFER_SIZE = 10000; | 39 | const int GDB_BUFFER_SIZE = 10000; |
| 40 | 40 | ||