From 228ba2d6a6967e1eabd23c956e27a2e9ebba52d6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 20 Nov 2023 10:06:37 -0500 Subject: Add shell_output() and use xmkstemp() --- include/system.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/system.h') diff --git a/include/system.h b/include/system.h index 81fe99a..d744726 100644 --- a/include/system.h +++ b/include/system.h @@ -24,5 +24,6 @@ struct Process { int shell(struct Process *proc, char *args[]); int shell2(struct Process *proc, char *args); int shell_safe(struct Process *proc, char *args[]); +char *shell_output(const char *command); #endif //OMC_SYSTEM_H -- cgit