Include guards on our headers

This commit is contained in:
Jasmine Iwanek
2022-02-18 19:42:21 -05:00
parent 7d3cfc0fe5
commit 7fc893bdb0
127 changed files with 472 additions and 277 deletions

View File

@@ -22,6 +22,9 @@
* Copyright 2020 EngiNerd.
*/
#ifndef VIDEO_OGC_H
# define VIDEO_OGC_H
typedef struct ogc_t {
cga_t cga;
/* unused in OGC, required for M19 video card structure idiom */
@@ -46,3 +49,5 @@ void ogc_mdaattr_rebuild();
extern const device_config_t ogc_config[];
extern const device_t ogc_device;
#endif
#endif /*VIDEO_OGC_H*/