diff options
-rw-r--r-- | sandboxing/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sandboxing/README.md b/sandboxing/README.md index 50bf0a0..7e20d04 100644 --- a/sandboxing/README.md +++ b/sandboxing/README.md @@ -20,8 +20,8 @@ Things to secure: ## Bottom up * `includes`: all `#include`s throughout the codebase. I assume that C the - language itself can't have any side effects that impact other programs on - the computer. + language itself can't invoke any syscalls without at least triggering + warnings from the compiler. ``` cd src grep '#include' * */* > ../sandboxing/includes |