diff options
Diffstat (limited to 'examples/system')
| -rw-r--r-- | examples/system/dynlink/library/balls.c | 2 | ||||
| -rw-r--r-- | examples/system/dynlink/library/cube.c | 2 | ||||
| -rw-r--r-- | examples/system/dynlink/library/dll_common.h | 1 | ||||
| -rw-r--r-- | examples/system/dynlink/main.c | 3 |
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/system/dynlink/library/balls.c b/examples/system/dynlink/library/balls.c index 2a4d9f4..ef6993e 100644 --- a/examples/system/dynlink/library/balls.c +++ b/examples/system/dynlink/library/balls.c @@ -3,7 +3,7 @@ * (C) 2021 spicyjpeg - MPL licensed */ -#include <sys/types.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <psxgpu.h> diff --git a/examples/system/dynlink/library/cube.c b/examples/system/dynlink/library/cube.c index 57f3e56..84fe552 100644 --- a/examples/system/dynlink/library/cube.c +++ b/examples/system/dynlink/library/cube.c @@ -3,7 +3,7 @@ * (C) 2021 spicyjpeg - MPL licensed */ -#include <sys/types.h> +#include <stdint.h> #include <stdio.h> #include <psxgpu.h> #include <psxgte.h> diff --git a/examples/system/dynlink/library/dll_common.h b/examples/system/dynlink/library/dll_common.h index 4f9314b..315a993 100644 --- a/examples/system/dynlink/library/dll_common.h +++ b/examples/system/dynlink/library/dll_common.h @@ -6,6 +6,7 @@ #ifndef __DLL_COMMON_H #define __DLL_COMMON_H +#include <stdint.h> #include <psxgpu.h> /* Common structures shared by the main executable and DLLs */ diff --git a/examples/system/dynlink/main.c b/examples/system/dynlink/main.c index 33f6f44..6d93e71 100644 --- a/examples/system/dynlink/main.c +++ b/examples/system/dynlink/main.c @@ -36,12 +36,11 @@ * as plugins/mods/patches stored on a memory card. */ -#include <sys/types.h> +#include <stdint.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <malloc.h> #include <dlfcn.h> #include <psxapi.h> #include <psxetc.h> |
