about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2000-07-04 15:04:17 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2000-07-04 15:04:17 +0000
commit708dc69d3830e0193f19032d0bd9f9df90772220 (patch)
tree1db3e0405cc9e254ed25a0d25393addec2b11e46 /Src
parent4ae42bb70eafc27cdc4e90eb35277dde140bc8d2 (diff)
downloadzsh-708dc69d3830e0193f19032d0bd9f9df90772220.tar.gz
zsh-708dc69d3830e0193f19032d0bd9f9df90772220.tar.xz
zsh-708dc69d3830e0193f19032d0bd9f9df90772220.zip
AIX dependency fixes
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/compcore.c5
-rw-r--r--Src/Zle/zle_utils.c2
-rw-r--r--Src/params.c2
3 files changed, 6 insertions, 3 deletions
diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c
index 1a1241853..ed53fa25a 100644
--- a/Src/Zle/compcore.c
+++ b/Src/Zle/compcore.c
@@ -37,7 +37,10 @@ static Widget lastcompwidget;
 /* Flags saying what we have to do with the result. */
 
 /**/
-int useexact, useline, uselist, forcelist, iforcemenu, startauto;
+int useexact, useline, uselist, forcelist, startauto;
+
+/**/
+mod_export int iforcemenu;
 
 /* Non-zero if we should go back to the last prompt. */
 
diff --git a/Src/Zle/zle_utils.c b/Src/Zle/zle_utils.c
index ece9a23ae..dc48c835c 100644
--- a/Src/Zle/zle_utils.c
+++ b/Src/Zle/zle_utils.c
@@ -472,7 +472,7 @@ freechanges(struct change *p)
 /* register pending changes in the undo system */
 
 /**/
-void
+mod_export void
 handleundo(void)
 {
     mkundoent();
diff --git a/Src/params.c b/Src/params.c
index 73b1c0e35..972922856 100644
--- a/Src/params.c
+++ b/Src/params.c
@@ -1400,7 +1400,7 @@ getstrvalue(Value v)
 static char *nular[] = {"", NULL};
 
 /**/
-char **
+mod_export char **
 getarrvalue(Value v)
 {
     char **s;