diff options
author | Alex March <alex.march.dev@gmail.com> | 2015-09-18 21:18:21 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-09-19 14:03:57 +0100 |
commit | c0035d16941adf867b7bdb2c8e6cf2248a732be7 (patch) | |
tree | ebc2f9bea21660c054a242643ffb015d0d02ee14 /unix/main.c | |
parent | 1e9d8e110b56b0771eddffb636f99f76407782aa (diff) | |
download | micropython-c0035d16941adf867b7bdb2c8e6cf2248a732be7.tar.gz micropython-c0035d16941adf867b7bdb2c8e6cf2248a732be7.zip |
unix: Use MICROPY_HAL_H macro for header inclusion.
Follow the same format as other ports using the macro to include
the HAL header.
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/main.c b/unix/main.c index 651c3836cc..3e43586721 100644 --- a/unix/main.c +++ b/unix/main.c @@ -45,7 +45,7 @@ #include "py/gc.h" #include "py/stackctrl.h" #include "genhdr/mpversion.h" -#include "unix_mphal.h" +#include MICROPY_HAL_H #include "input.h" // Command line options, with their defaults |