diff options
Diffstat (limited to 'sim/common/hw-events.c')
-rw-r--r-- | sim/common/hw-events.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sim/common/hw-events.c b/sim/common/hw-events.c index 620b47d..301f868 100644 --- a/sim/common/hw-events.c +++ b/sim/common/hw-events.c @@ -20,13 +20,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* This must come before any other includes. */ #include "defs.h" +#include <string.h> + #include "hw-main.h" #include "hw-base.h" #include "sim-events.h" -#include <string.h> - /* The hw-events object is implemented using sim-events */ struct hw_event @@ -179,10 +179,11 @@ hw_event_remain_time (struct hw *me, struct hw_event *event) Build with `make test-hw-events' in sim/<cpu> directory*/ #if defined (MAIN) -#include "sim-main.h" -#include <string.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> + +#include "sim-main.h" static void test_handler (struct hw *me, |