diff options
author | jilles <jilles@FreeBSD.org> | 2012-01-01 22:17:12 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2012-01-01 22:17:12 +0000 |
commit | 8152f4c1927b535528fef82bc9449a9ffcfbfae5 (patch) | |
tree | c9bf6a1be78ff3a781bf9a2df71ecff91e72ee4f /bin/sh/exec.c | |
parent | bbd60abdf3ff8bb1ab2fbb59c1a4df2ee213f69e (diff) | |
download | FreeBSD-src-8152f4c1927b535528fef82bc9449a9ffcfbfae5.zip FreeBSD-src-8152f4c1927b535528fef82bc9449a9ffcfbfae5.tar.gz |
sh: Make various functions static.
Diffstat (limited to 'bin/sh/exec.c')
-rw-r--r-- | bin/sh/exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/sh/exec.c b/bin/sh/exec.c index 044fc30..468f940 100644 --- a/bin/sh/exec.c +++ b/bin/sh/exec.c @@ -100,6 +100,7 @@ static void tryexec(char *, char **, char **); static void printentry(struct tblentry *, int); static struct tblentry *cmdlookup(const char *, int); static void delete_cmd_entry(void); +static void addcmdentry(const char *, struct cmdentry *); @@ -593,7 +594,7 @@ delete_cmd_entry(void) * the same name. */ -void +static void addcmdentry(const char *name, struct cmdentry *entry) { struct tblentry *cmdp; |