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/environment.h | |
parent | 931ee28eb9c5b5e3c2b0d3008f5f65d810dc9b0c (diff) | |
download | stasis-77a0276d9f37bcf828c77f9bcc59ff945116274e.tar.gz |
Rebrand OhMyCal (OMC) as STASIS (#7)
Diffstat (limited to 'include/environment.h')
-rw-r--r-- | include/environment.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/environment.h b/include/environment.h index 484f02c..34bc600 100644 --- a/include/environment.h +++ b/include/environment.h @@ -1,8 +1,8 @@ /** * @file environment.h */ -#ifndef OMC_ENVIRONMENT_H -#define OMC_ENVIRONMENT_H +#ifndef STASIS_ENVIRONMENT_H +#define STASIS_ENVIRONMENT_H #include <stdio.h> #include <stdlib.h> @@ -20,4 +20,4 @@ char *runtime_expand_var(RuntimeEnv *env, char *input); void runtime_export(RuntimeEnv *env, char **keys); void runtime_apply(RuntimeEnv *env); void runtime_free(RuntimeEnv *env); -#endif //OMC_ENVIRONMENT_H +#endif //STASIS_ENVIRONMENT_H |