diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-12-25 07:34:51 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-12-25 07:34:51 -0800 |
commit | 3964dd5f574c90d6f8d89626645f43ece36bad31 (patch) | |
tree | b274e916c23fbde261ff8887727beee5d6f0c003 | |
parent | e2846d9a558330c4f5e4053cd2d09c104d6beef4 (diff) | |
download | teliva-3964dd5f574c90d6f8d89626645f43ece36bad31.tar.gz |
.
-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 |