Skip to content
Snippets Groups Projects
Commit cd0987f5 authored by Alexander Steffen's avatar Alexander Steffen Committed by Paul Sokolovsky
Browse files

py/frozenmod.h: Add missing header guards

parent f8ac2896
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#ifndef __MICROPY_INCLUDED_PY_FROZENMOD_H__
#define __MICROPY_INCLUDED_PY_FROZENMOD_H__
#include "py/lexer.h" #include "py/lexer.h"
...@@ -35,3 +37,5 @@ enum { ...@@ -35,3 +37,5 @@ enum {
int mp_find_frozen_module(const char *str, size_t len, void **data); 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); const char *mp_find_frozen_str(const char *str, size_t *len);
mp_import_stat_t mp_frozen_stat(const char *str); mp_import_stat_t mp_frozen_stat(const char *str);
#endif // __MICROPY_INCLUDED_PY_FROZENMOD_H__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment