diff options
Diffstat (limited to 'Src/params.c')
-rw-r--r-- | Src/params.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/params.c b/Src/params.c index 1cff358df..89d25afee 100644 --- a/Src/params.c +++ b/Src/params.c @@ -54,6 +54,7 @@ char **path, /* $path */ **fignore; /* $fignore */ /**/ +mod_export char *argzero, /* $0 */ *home, /* $HOME */ *nullcmd, /* $NULLCMD */ @@ -2621,14 +2622,14 @@ arrhashsetfn(Param pm, char **val, int augment) */ /**/ -void +mod_export void nullstrsetfn(UNUSED(Param pm), char *x) { zsfree(x); } /**/ -void +mod_export void nullintsetfn(UNUSED(Param pm), UNUSED(zlong x)) {} |