From 908e426cc1ef2187357ed8fb59edd99b8a8060c9 Mon Sep 17 00:00:00 2001 From: negativeExponent Date: Tue, 4 Aug 2020 19:49:04 +0800 Subject: Add header guards --- frontend/plat.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'frontend/plat.h') diff --git a/frontend/plat.h b/frontend/plat.h index 6b0cd65..8a296ea 100644 --- a/frontend/plat.h +++ b/frontend/plat.h @@ -1,3 +1,6 @@ +#ifndef __PLAT_H__ +#define __PLAT_H__ + void plat_init(void); void plat_finish(void); void plat_minimize(void); @@ -8,3 +11,5 @@ void plat_gvideo_open(int is_pal); void *plat_gvideo_set_mode(int *w, int *h, int *bpp); void *plat_gvideo_flip(void); void plat_gvideo_close(void); + +#endif /* __PLAT_H__ */ -- cgit v1.2.3