summaryrefslogtreecommitdiff
path: root/kernel/fifo.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-17 02:28:02 +0200
committerMiguel <m.i@gmx.at>2018-08-17 02:28:02 +0200
commitc742be9c738c91703a7be787639cad167de3a6b1 (patch)
treedb0e170dab1b7f34630489d0cb1d396c92f15c79 /kernel/fifo.h
parent559eea53ecdd1e3e45f24d15e8739419b0cd647a (diff)
started reviving my fool os
Diffstat (limited to 'kernel/fifo.h')
-rw-r--r--kernel/fifo.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/fifo.h b/kernel/fifo.h
index e0a81e5..a574a25 100644
--- a/kernel/fifo.h
+++ b/kernel/fifo.h
@@ -1,6 +1,5 @@
// SIMPLE FIFO DRIVER
-
#ifndef FIFO_H
#define FIFO_H
@@ -21,5 +20,4 @@ volatile bool fifo_put(fifo*,uint8_t);
volatile uint8_t fifo_get(fifo*);
volatile bool fifo_has(fifo*);
-
#endif