aboutsummaryrefslogtreecommitdiff
path: root/kernel/dmx.c
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-01-03 21:39:35 +0000
committerDimitri Sokolyuk <demon@dim13.org>2016-01-03 21:39:35 +0000
commit42e82167772947ff023c4fa496813820618bf0f4 (patch)
tree6374d90c5aa1c21bd136a2e550103293c681b32d /kernel/dmx.c
parent3f43c1ea8ee72d5dd195eaf463fb5a42cdddbc18 (diff)
Sanitize includes
Diffstat (limited to 'kernel/dmx.c')
-rw-r--r--kernel/dmx.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/kernel/dmx.c b/kernel/dmx.c
index 6ee28c0..5864a32 100644
--- a/kernel/dmx.c
+++ b/kernel/dmx.c
@@ -15,12 +15,14 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <stdint.h>
-#include <stdio.h>
-#include <string.h>
#include <avr/io.h>
#include <avr/sleep.h>
#include <avr/cpufunc.h>
+
+#include <stdint.h>
+#include <stdio.h>
+#include <string.h>
+
#include "kernel.h"
#include "tasks.h"