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

@@ -1,6 +1,10 @@
/* Copyright holders: Sarah Walker
see COPYING for more details
*/
#ifndef VIDEO_MDA_H
# define VIDEO_MDA_H
typedef struct mda_t
{
mem_mapping_t mapping;
@@ -38,3 +42,5 @@ void mda_poll(void *p);
#ifdef EMU_DEVICE_H
extern const device_t mda_device;
#endif
#endif /*VIDEO_MDA_H*/