From 6428bd5546b4d67d1bd464acf7f31136d81f270f Mon Sep 17 00:00:00 2001 From: Christian Mehlis <mehlis@inf.fu-berlin.de> Date: Mon, 12 Aug 2013 11:22:47 +0200 Subject: [PATCH] use std include style --- core/hwtimer.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/core/hwtimer.c b/core/hwtimer.c index de182fa2e6..4abbca38ac 100644 --- a/core/hwtimer.c +++ b/core/hwtimer.c @@ -18,15 +18,16 @@ */ #include <stdio.h> -#include <hwtimer.h> -#include <hwtimer_cpu.h> -#include <hwtimer_arch.h> -#include <kernel.h> -#include <thread.h> -#include <lifo.h> +#include "kernel.h" +#include "thread.h" +#include "lifo.h" #include "mutex.h" +#include "hwtimer.h" +#include "hwtimer_cpu.h" +#include "hwtimer_arch.h" + /*---------------------------------------------------------------------------*/ typedef struct hwtimer_t { -- GitLab