fails to compile with "unknown type name 'loff_t'; did you mean 'off_t'" error, add missing include and also define _GNU_SOURCE Signed-off-by: Jules Maselbas <jmaselbas@xxxxxxxx> --- arch/sandbox/os/sdl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/sandbox/os/sdl.c b/arch/sandbox/os/sdl.c index 87c8265ea9..0c31b6ce87 100644 --- a/arch/sandbox/os/sdl.c +++ b/arch/sandbox/os/sdl.c @@ -3,8 +3,11 @@ * Copyright (c) 2021 Ahmad Fatoum */ +#define _GNU_SOURCE #include <stdio.h> #include <stdbool.h> +#include <stdint.h> +#include <fcntl.h> #include <SDL.h> #include <mach/linux.h> -- 2.48.1