aboutsummaryrefslogtreecommitdiff
path: root/src/debug/GdbStub.h
diff options
context:
space:
mode:
authorRealAstolfo <astolfo.gman@gmail.com>2024-04-18 05:40:38 -0600
committerGitHub <noreply@github.com>2024-04-18 13:40:38 +0200
commit84474105e29c858bdfe22fcbe443ede7753e9609 (patch)
tree69105671ac0e493024fc6199cd88155e4095690c /src/debug/GdbStub.h
parent5a852cb00d56342f7e013d0ca6e14b10a9c4b84c (diff)
ssize_t is not defined in stddef.h (#1999)
i had to add sys/types.h and patch my gentoo ebuilds for a successful compilation.
Diffstat (limited to 'src/debug/GdbStub.h')
-rw-r--r--src/debug/GdbStub.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/debug/GdbStub.h b/src/debug/GdbStub.h
index ace07bf..99b8815 100644
--- a/src/debug/GdbStub.h
+++ b/src/debug/GdbStub.h
@@ -3,6 +3,7 @@
#define GDBSTUB_H_
#include <stddef.h>
+#include <sys/types.h>
#include <map>
#include <vector>