aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2015-03-14 15:11:29 +0100
committerAlex Auvolat <alex@adnab.me>2015-03-14 15:11:29 +0100
commitf574c22f86d90f735107fda199bb5b4982cd9621 (patch)
tree981c8d3417465e1084eceab05c44bf1f8e4b2017 /src/lib/include
parent51def2fc45d98b59be0413fcb9c25cbb0bbca211 (diff)
downloadkogata-f574c22f86d90f735107fda199bb5b4982cd9621.tar.gz
kogata-f574c22f86d90f735107fda199bb5b4982cd9621.zip
Fix write of null length to channel ; fix cat.
Diffstat (limited to 'src/lib/include')
-rw-r--r--src/lib/include/stdio.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/include/stdio.h b/src/lib/include/stdio.h
index 4b300da..b51bee4 100644
--- a/src/lib/include/stdio.h
+++ b/src/lib/include/stdio.h
@@ -4,6 +4,8 @@
#include <stdarg.h>
#include <stdint.h>
+extern fd_t stdio;
+
void putchar(int c);
void puts(char* s);
void printf(char* arg, ...);