all repos — mgba @ 4e98546cd655405a88fc8670ba0a37d21455b8fc

mGBA Game Boy Advance Emulator

Add missing header guard
Jeffrey Pfau jeffrey@endrift.com
Sun, 19 Jan 2014 03:38:18 -0800
commit

4e98546cd655405a88fc8670ba0a37d21455b8fc

parent

daf12994dbb999ecfcda4020ec4de86aaedd6f38

1 files changed, 5 insertions(+), 0 deletions(-)

jump to
M src/gba/gba-serialize.hsrc/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