From 69ad53c430fade55b3ca3c61f856a16c8a8f48a3 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Tue, 3 Oct 2023 23:42:41 +0200 Subject: [PATCH] include psptypes.h in psprtc.h Fixes #155 I tested this by adding `#include ` at the top of `main.c` for the `debug/kprintf` sample. With this fix it compiles, without this fix it does not. --- src/rtc/psprtc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rtc/psprtc.h b/src/rtc/psprtc.h index 3bda8a3d..eaa50d93 100644 --- a/src/rtc/psprtc.h +++ b/src/rtc/psprtc.h @@ -14,6 +14,7 @@ #define __PSPRTC_H__ #include +#include #ifdef __cplusplus extern "C" {