diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-04-18 10:47:14 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-04-18 10:47:14 -0700 |
commit | e21f19001551eddbb8d27acea1327590ce124461 (patch) | |
tree | 20d20e1f3ed7deca262fcd0c2bd366af88715c81 /lib.c | |
parent | c765b773e63b2099a050fef21b5e7f06296af2ec (diff) | |
download | txr-e21f19001551eddbb8d27acea1327590ce124461.tar.gz txr-e21f19001551eddbb8d27acea1327590ce124461.tar.bz2 txr-e21f19001551eddbb8d27acea1327590ce124461.zip |
Adding getenv, setenv and unsetenv.
* lib.c (setenv, unsetenv): Changed static functions to external.
Moved them out of the #if !HAVE_TIMEGM block.
* lib.h (setenv, unsetenv): Declared.
* sysif.c (getenv_wrap, setenv_wrap, unsetenv_wrap): New functions.
(sysif_init): Registered getenv, setenv and unsetenv.
* txr.1: Documented getenv, setenv and unsetenv.
* tl.vim, txr.vim: Regenerated.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -7173,11 +7173,9 @@ val make_time(val year, val month, val day, return make_time_impl(mktime, year, month, day, hour, minute, second, isdst); } -#if !HAVE_TIMEGM - #if !HAVE_SETENV -static void -setenv(const char *name, const char *value, int overwrite) + +void setenv(const char *name, const char *value, int overwrite) { int len = strlen(name)+1+strlen(value)+1; char *str = (char *) chk_malloc(len); @@ -7186,13 +7184,16 @@ setenv(const char *name, const char *value, int overwrite) putenv(str); } -static void -unsetenv(const char *name) +void unsetenv(const char *name) { setenv(name, "", 1); } + #endif + +#if !HAVE_TIMEGM + static time_t timegm_hack(struct tm *tm) { time_t ret; |