diff options
Diffstat (limited to 'util/puts.c')
-rw-r--r-- | util/puts.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/puts.c b/util/puts.c index c0eec03..0bd72e9 100644 --- a/util/puts.c +++ b/util/puts.c @@ -21,6 +21,9 @@ * Author: Bryan Ford, University of Utah CSL */ +#include <device/cons.h> +#include <util/putchar.h> + /* Simple puts() implementation that just uses putchar(). Note that our libc's printf() is implemented in terms of only puts() and putchar(), so that's all we need. */ |