summaryrefslogtreecommitdiff
path: root/kernel/fifo.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-18 13:23:53 +0200
committerMiguel <m.i@gmx.at>2018-08-18 13:23:53 +0200
commit7b0d88b2dff9b635d9ff69f6d51b6832c1ca4c40 (patch)
tree22c452e9c7ad586136721e776e0b67b23fb33119 /kernel/fifo.h
parent17fd357bad5f6c3362cfdab1d807aa463c69a4e9 (diff)
cleaning up syscalls and playing with new pipes
Diffstat (limited to 'kernel/fifo.h')
-rw-r--r--kernel/fifo.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/fifo.h b/kernel/fifo.h
index b5c11a4..fd9146c 100644
--- a/kernel/fifo.h
+++ b/kernel/fifo.h
@@ -11,7 +11,6 @@ typedef struct fifo_struct
bool (*put)(struct fifo_stuct*,uint8_t);
uint8_t (*get)(struct fifo_struct*);
bool (*has)(struct fifo_struct*);
-
void *data; // opaque data
}fifo;