summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-07 20:47:57 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-07 20:47:57 -0700
commitb1c2b8641f584ddeaef872ee6425cadca706e97d (patch)
tree6d01c1623c6368e3a12456e23944892fd5324d7e /sysif.c
parentac22923c691dfaf40830bedf056ee8948427dced (diff)
downloadtxr-b1c2b8641f584ddeaef872ee6425cadca706e97d.tar.gz
txr-b1c2b8641f584ddeaef872ee6425cadca706e97d.tar.bz2
txr-b1c2b8641f584ddeaef872ee6425cadca706e97d.zip
Load and save repl history.
* parser.c (repl): If a HOME environment variable exists, then load the .txr_history file from the user's home directory and save it when exiting. * sysif.c (getenv_wrap): Static function changed to extern. * sysif.h (getenv_wrap): Declared.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysif.c b/sysif.c
index 5197d337..1d858820 100644
--- a/sysif.c
+++ b/sysif.c
@@ -671,7 +671,7 @@ static val pipe_wrap(void)
#endif
-static val getenv_wrap(val name)
+val getenv_wrap(val name)
{
char *nameu8 = utf8_dup_to(c_str(name));
char *lookup = getenv(nameu8);