diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-06-21 12:49:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 12:49:45 -0400 |
commit | 77a0276d9f37bcf828c77f9bcc59ff945116274e (patch) | |
tree | 91cf7cb955798ad40718341172b0a8ffbc59a1f2 /include/system.h | |
parent | 931ee28eb9c5b5e3c2b0d3008f5f65d810dc9b0c (diff) | |
download | stasis-77a0276d9f37bcf828c77f9bcc59ff945116274e.tar.gz |
Rebrand OhMyCal (OMC) as STASIS (#7)
Diffstat (limited to 'include/system.h')
-rw-r--r-- | include/system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/system.h b/include/system.h index 94d5a36..7019b92 100644 --- a/include/system.h +++ b/include/system.h @@ -2,8 +2,8 @@ * System functions * @file system.h */ -#ifndef OMC_SYSTEM_H -#define OMC_SYSTEM_H +#ifndef STASIS_SYSTEM_H +#define STASIS_SYSTEM_H #include <stdio.h> #include <stdlib.h> @@ -14,7 +14,7 @@ #include <sys/wait.h> #include <sys/stat.h> -#define OMC_SHELL_SAFE_RESTRICT ";&|()" +#define STASIS_SHELL_SAFE_RESTRICT ";&|()" struct Process { // Write stdout stream to file @@ -31,4 +31,4 @@ int shell(struct Process *proc, char *args); int shell_safe(struct Process *proc, char *args); char *shell_output(const char *command, int *status); -#endif //OMC_SYSTEM_H +#endif //STASIS_SYSTEM_H |