Skip to content

Commit 3adc7a0

Browse files
committed
hello world
1 parent 432de23 commit 3adc7a0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

0x00-hello_world/101-quote.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#include <stdio.h>
2-
#include <unlstd.h>
2+
#include <unistd.h>
33
/**
4-
* Main - is the entry point of the c program
4+
* main - is the entry point of the c program
55
* Return: 1 (success)
66
*/
77
int main(void)
88
{
9-
fput("and that piece of art is useful\" - Dora Korpar, 2015-10-19\n", stdout);
9+
fputs("and that piece of art is useful\" - Dora Korpar,
10+
2015-10-19\n", stdout);
1011
return (1);
1112
}

0x00-hello_world/q

Whitespace-only changes.
Binary file not shown.

0 commit comments

Comments
 (0)