Implemented fputs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user