From fa5898eb14e4561615423a39dd759e3bb9a1eede Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 23 Jan 2022 16:19:38 +0200 Subject: [PATCH 1/1] vita: add a seemingly missing include --- frontend/vita/sys/mman.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/vita/sys/mman.h b/frontend/vita/sys/mman.h index 89da513c..d2634836 100644 --- a/frontend/vita/sys/mman.h +++ b/frontend/vita/sys/mman.h @@ -1,13 +1,14 @@ #ifndef MMAN_H #define MMAN_H +#include +#include +#include + #ifdef __cplusplus extern "C" { #endif -#include "stdlib.h" -#include "stdio.h" - #define PROT_READ 0b001 #define PROT_WRITE 0b010 #define PROT_EXEC 0b100 -- 2.39.2