From 8caaa215046a721c21a0559a9ba64c80d38fbe75 Mon Sep 17 00:00:00 2001 From: Scott Bigelow Date: Sun, 23 Aug 2015 20:28:06 -0700 Subject: [PATCH] Adding a few connecting words, removing a few others --- SysCall/syscall-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SysCall/syscall-1.md b/SysCall/syscall-1.md index 38d5318..53c1d5c 100644 --- a/SysCall/syscall-1.md +++ b/SysCall/syscall-1.md @@ -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: