summaryrefslogtreecommitdiff
path: root/src/lib/libc/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/include')
-rw-r--r--src/lib/libc/include/stdio.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/libc/include/stdio.h b/src/lib/libc/include/stdio.h
index c8b7c10..31d59a5 100644
--- a/src/lib/libc/include/stdio.h
+++ b/src/lib/libc/include/stdio.h
@@ -53,6 +53,13 @@ int vsnprintf(char *s, size_t size, const char *fmt, va_list ap);
int snprintf(char *s, size_t size, const char *fmt, ...);
/*
+ * Write a character to stdout
+ *
+ * @c: Character to write
+ */
+int putchar(int c);
+
+/*
* Print a formatted string
*/
int printf(const char *__restrict fmt, ...);