diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-06 01:23:49 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-06 01:23:49 +0200 |
commit | a29358dc58a11c7f6b82844d8309d5a5b2c8cb91 (patch) | |
tree | 3547cf74151f62d98809036f69be0610107a301e /src/nvim/os | |
parent | b09e03c64d0f38a43b5ef068141bc86e365cd7fa (diff) | |
parent | d55b12ea508500760796ede2bca9b48f391afb80 (diff) | |
download | rneovim-a29358dc58a11c7f6b82844d8309d5a5b2c8cb91.tar.gz rneovim-a29358dc58a11c7f6b82844d8309d5a5b2c8cb91.tar.bz2 rneovim-a29358dc58a11c7f6b82844d8309d5a5b2c8cb91.zip |
Merge #10655 'environ(), getenv(), setenv()'
close #10655
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/env.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/env.c b/src/nvim/os/env.c index 2278c325ea..bef78d8cc8 100644 --- a/src/nvim/os/env.c +++ b/src/nvim/os/env.c @@ -45,6 +45,7 @@ void env_init(void) } /// Like getenv(), but returns NULL if the variable is empty. +/// @see os_env_exists const char *os_getenv(const char *name) FUNC_ATTR_NONNULL_ALL { |