From b3b2921b7e3be8b7a947541c44a9ad246c9a76cb Mon Sep 17 00:00:00 2001 From: ngiddings Date: Mon, 12 Apr 2021 01:41:52 -0500 Subject: [PATCH] Renamed tty.h to stdio.h Added puts() declaration --- include/{tty.h => stdio.h} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename include/{tty.h => stdio.h} (83%) diff --git a/include/tty.h b/include/stdio.h similarity index 83% rename from include/tty.h rename to include/stdio.h index 6ec7d33..3c086ee 100644 --- a/include/tty.h +++ b/include/stdio.h @@ -1,10 +1,11 @@ #pragma once -#include #include int putchar(int c); +int puts(const char *str); + int printf(const char *format, ...); int sprintf(char *str, const char *format, ...); \ No newline at end of file