diff options
| author | 2015-10-22 00:31:49 -0400 | |
|---|---|---|
| committer | 2015-10-22 00:31:49 -0400 | |
| commit | a7eb6a4045c2fa2b9b674ddc6c749c1cb7532b9d (patch) | |
| tree | 4f1f588d79c2432a44ee8ee01f7278168cad1e7f /src/core/gdbstub/gdbstub.cpp | |
| parent | Use CHAR_BIT instead of 8 (diff) | |
| download | yuzu-a7eb6a4045c2fa2b9b674ddc6c749c1cb7532b9d.tar.gz yuzu-a7eb6a4045c2fa2b9b674ddc6c749c1cb7532b9d.tar.xz yuzu-a7eb6a4045c2fa2b9b674ddc6c749c1cb7532b9d.zip | |
Add some headers so TravisCI will hopefully work
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index b226b431a..5568df21b 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -4,11 +4,13 @@ | |||
| 4 | 4 | ||
| 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 <csignal> | 8 | #include <csignal> |
| 8 | #include <cstdarg> | 9 | #include <cstdarg> |
| 9 | #include <cstdio> | 10 | #include <cstdio> |
| 10 | #include <cstring> | 11 | #include <cstring> |
| 11 | #include <fcntl.h> | 12 | #include <fcntl.h> |
| 13 | #include <limits.h> | ||
| 12 | #include <map> | 14 | #include <map> |
| 13 | #include <numeric> | 15 | #include <numeric> |
| 14 | 16 | ||