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/unix_mphal.c | |
parent | 1e9d8e110b56b0771eddffb636f99f76407782aa (diff) |
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/unix_mphal.c')
-rw-r--r-- | unix/unix_mphal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/unix_mphal.c b/unix/unix_mphal.c index 1f545f9e5..11cd03344 100644 --- a/unix/unix_mphal.c +++ b/unix/unix_mphal.c @@ -29,7 +29,7 @@ #include <string.h> #include "py/mpstate.h" -#include "unix_mphal.h" +#include MICROPY_HAL_H #ifndef _WIN32 #include <signal.h> |