diff options
author | Alexander Steffen <webmeister@users.noreply.github.com> | 2017-06-27 16:21:45 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-28 00:51:45 +0300 |
commit | cd0987f5b7ad8b93278b9fbef4fe2f43e5cdc586 (patch) | |
tree | 956215be9f8e03bc6c38ddcd97635dce5bf10db5 | |
parent | f8ac28964d8d7801baed71e6414aad8621471458 (diff) |
py/frozenmod.h: Add missing header guards
-rw-r--r-- | py/frozenmod.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/frozenmod.h b/py/frozenmod.h index 4b125ff24..7c1299b2c 100644 --- a/py/frozenmod.h +++ b/py/frozenmod.h @@ -23,6 +23,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#ifndef __MICROPY_INCLUDED_PY_FROZENMOD_H__ +#define __MICROPY_INCLUDED_PY_FROZENMOD_H__ #include "py/lexer.h" @@ -35,3 +37,5 @@ enum { int mp_find_frozen_module(const char *str, size_t len, void **data); const char *mp_find_frozen_str(const char *str, size_t *len); mp_import_stat_t mp_frozen_stat(const char *str); + +#endif // __MICROPY_INCLUDED_PY_FROZENMOD_H__ |