Add missing header guard
Jeffrey Pfau jeffrey@endrift.com
Sun, 19 Jan 2014 03:38:18 -0800
1 files changed,
5 insertions(+),
0 deletions(-)
jump to
M
src/gba/gba-serialize.h
→
src/gba/gba-serialize.h
@@ -1,3 +1,6 @@
+#ifndef GBA_SERIALIZE_H +#define GBA_SERIALIZE_H + #include "gba.h" const uint32_t GBA_SAVESTATE_MAGIC;@@ -152,3 +155,5 @@
struct GBASerializedState* GBAMapState(int fd); struct GBASerializedState* GBAAllocateState(void); void GBADeallocateState(struct GBASerializedState* state); + +#endif