unix: Use MICROPY_HAL_H macro for header inclusion.

Follow the same format as other ports using the macro to include
the HAL header.
This commit is contained in:
Alex March 2015-09-18 21:18:21 +01:00 committed by Damien George
parent 1e9d8e110b
commit c0035d1694
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -29,7 +29,7 @@
#include <string.h>
#include "py/mpstate.h"
#include "unix_mphal.h"
#include MICROPY_HAL_H
#ifndef _WIN32
#include <signal.h>