diff options
author | 2019-04-12 01:49:57 +1000 | |
---|---|---|
committer | 2019-04-12 01:49:57 +1000 | |
commit | f70f31731cddfe0f96b74fa82a3a07a51b17411e (patch) | |
tree | 49b646154d79db316d9450663a1a63e7283f085c /src/lib/formats/sc3000_bit.h | |
parent | 3aaae04942b9dd28de2232049d63a8871666ecaa (diff) |
(nw) suppress side effects, standardise #include guards
Diffstat (limited to 'src/lib/formats/sc3000_bit.h')
-rw-r--r-- | src/lib/formats/sc3000_bit.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/formats/sc3000_bit.h b/src/lib/formats/sc3000_bit.h index aed4b0c08f3..463f6b64d86 100644 --- a/src/lib/formats/sc3000_bit.h +++ b/src/lib/formats/sc3000_bit.h @@ -7,14 +7,13 @@ Cassette code for Sega SC-3000 *.bit files *********************************************************************/ +#ifndef MAME_FORMATS_SC3000_BIT_H +#define MAME_FORMATS_SC3000_BIT_H #pragma once -#ifndef __SC3000_BIT__ -#define __SC3000_BIT__ - #include "cassimg.h" CASSETTE_FORMATLIST_EXTERN( sc3000_cassette_formats ); -#endif +#endif // MAME_FORMATS_SC3000_BIT_H |