From 3964dd5f574c90d6f8d89626645f43ece36bad31 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 25 Dec 2021 07:34:51 -0800 Subject: [PATCH] . --- sandboxing/README.md | 4 ++-- 1 file 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