1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 12:20:56 +00:00

Adding a few connecting words, removing a few others

This commit is contained in:
Scott Bigelow 2015-08-23 20:28:06 -07:00
parent 6be6112c5b
commit 8caaa21504

View File

@ -131,7 +131,7 @@ In the first line of the `strace` output, we can see [execve](https://github.com
for the first six parameters of a function. If a function has more than six arguments, other parameters will be placed on the stack.
We do not use system calls in our code directly, but anyway our program uses it when we want to print something, check access to a file or just write or read something to it.
We do not use system calls in our code directly, but our program uses it when we want to print something, check access to a file or just write or read something to it.
For example: