Implemented fputs

This commit is contained in:
Max Wash
2020-04-01 11:58:54 +01:00
parent 08734094d7
commit 703d9a178f
5 changed files with 38 additions and 2 deletions

View File

@@ -3,7 +3,6 @@
int main(int argc, char **argv)
{
const char *msg = "Hello!\n";
write(fileno(stdout), msg, 7);
fputs("Hello, world!\n", stdout);
return 0;
}