aboutsummaryrefslogtreecommitdiffstats
path: root/src/unistd/exec.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/unistd/exec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unistd/exec.c b/src/unistd/exec.c
index 69edc4e..2d121e7 100644
--- a/src/unistd/exec.c
+++ b/src/unistd/exec.c
@@ -285,6 +285,7 @@ int execve(const char* path, char* const argv[], char* const envp[])
return errno = ENOTSUP, -1;
(void) path, (void) argv, (void) envp;
/* TODO implement execve */
+ /* TODO support wrapping in valgrind, strace, &c. */
}