aboutsummaryrefslogtreecommitdiff
path: root/include/environment.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2023-10-31 12:09:39 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2023-10-31 12:09:39 -0400
commit902071e0951448f8a754024ed4bfad24349d00d0 (patch)
tree3ecff9359207c3d5ad8822a60bef7a50c4aaec84 /include/environment.h
parent864a9c811567dc5b4a8f2a8701f814caafe8965e (diff)
downloadstasis-902071e0951448f8a754024ed4bfad24349d00d0.tar.gz
Remove const type constraint from input string
Diffstat (limited to 'include/environment.h')
-rw-r--r--include/environment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/environment.h b/include/environment.h
index db15d27..254c430 100644
--- a/include/environment.h
+++ b/include/environment.h
@@ -16,7 +16,7 @@ RuntimeEnv *runtime_copy(char **env);
int runtime_replace(RuntimeEnv **dest, char **src);
char *runtime_get(RuntimeEnv *env, const char *key);
void runtime_set(RuntimeEnv *env, const char *_key, const char *_value);
-char *runtime_expand_var(RuntimeEnv *env, const char *input);
+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);