From e365356c8bb3ccf3ac1a5e6eb86f67d400681c5b Mon Sep 17 00:00:00 2001 From: gambas Date: Tue, 7 May 2019 10:35:20 +0200 Subject: [PATCH] Workaround a bug in system header files on PPC systems. [GB.NET] * BUG: Workaround a bug in system header files on PPC systems. --- gb.net/src/speed.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gb.net/src/speed.c b/gb.net/src/speed.c index d4b9cc24f..5af97a677 100644 --- a/gb.net/src/speed.c +++ b/gb.net/src/speed.c @@ -28,7 +28,12 @@ #if OS_LINUX -#include +#if ARCH_PPC + #include + #include +#else + #include +#endif int ioctl(int fd, unsigned long request, ...);