Add header guards

This commit is contained in:
twinaphex
2014-03-30 22:50:28 +02:00
parent 73bf72aa6c
commit d4a3125c44
36 changed files with 152 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
#ifndef _X6502STRUCTH
#define _X6502STRUCTH
typedef struct __X6502 {
int32 tcount; /* Temporary cycle counter */
@@ -21,5 +22,5 @@ typedef struct __X6502 {
void (*WriteHook)(struct __X6502 *, uint32, uint8);
#endif
} X6502;
#define _X6502STRUCTH
#endif