From 9f25c762c377a9b070aee980994f89eb5ee7933e Mon Sep 17 00:00:00 2001 From: Theo grevet benbezza Date: Tue, 23 Jan 2018 17:13:34 +0100 Subject: [PATCH] typo fix --- Misc/program_startup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/program_startup.md b/Misc/program_startup.md index 5f680db..fa21a32 100644 --- a/Misc/program_startup.md +++ b/Misc/program_startup.md @@ -150,7 +150,7 @@ In the previous paragraph we saw how an executable file is prepared to run by th $ gcc -Wall program.c -o sum ``` -You may guess that `_start` comes from the [stanard libray](https://en.wikipedia.org/wiki/Standard_library) and that's true. If you try to compile our program again and pass the `-v` option to gcc which will enable `verbose mode`, you will see a long output. The full output is not interesting for us, let's look at the following steps: +You may guess that `_start` comes from the [standard library](https://en.wikipedia.org/wiki/Standard_library) and that's true. If you try to compile our program again and pass the `-v` option to gcc which will enable `verbose mode`, you will see a long output. The full output is not interesting for us, let's look at the following steps: First of all, our program should be compiled with `gcc`: