-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include <stdio.h> | ||
/** | ||
* first - prints before main executes. | ||
* Return: none. | ||
*/ | ||
void first(void) __attribute__ ((constructor)); | ||
void first(void) | ||
{ | ||
printf("You're beat! and yet, you must allow,\n" | ||
"I bore my house upon my back!\n"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include <stdio.h> | ||
|
||
/** | ||
* main - check the code for Holberton School students. | ||
* | ||
* Return: Always 0. | ||
*/ | ||
int main(void) | ||
{ | ||
printf("(A tortoise, having pretty good sense of a hare's nature, challenges one to a race.)\n"); | ||
return (0); | ||
} |
Binary file not shown.