diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-11-20 10:06:37 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-11-20 10:06:37 -0500 |
commit | 228ba2d6a6967e1eabd23c956e27a2e9ebba52d6 (patch) | |
tree | f14c7847d646c9045c2810250c8039d9cedc2f33 /include/system.h | |
parent | 243d8540b3869f9ace2baf8b00f9cb86e8d84d52 (diff) | |
download | stasis-228ba2d6a6967e1eabd23c956e27a2e9ebba52d6.tar.gz |
Add shell_output() and use xmkstemp()
Diffstat (limited to 'include/system.h')
-rw-r--r-- | include/system.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |