From: John Beppu Date: Tue, 27 Jun 2000 07:54:33 +0000 (-0000) Subject: + s/int install_links/static int install_links/ X-Git-Tag: 0_46~87 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=495869f59a6cb9be0c180d945fcc03b96949d850;p=oweals%2Fbusybox.git + s/int install_links/static int install_links/ ? Did you want "busybox --install" or "busybox install" ? The TODO and mailing-list conflict on this issue. I would recommend against "busybox install", because people might confuse it w/ /usr/bin/install that does something different. --- diff --git a/applets/busybox.c b/applets/busybox.c index 5f1c56bc3..e454bb6ec 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -377,7 +377,7 @@ static char* install_dir[] = { typedef int (*__link_f)(const char *, const char *); /* create (sym)links for each applet */ -int install_links(const char *busybox, int use_symbolic_links) +static int install_links(const char *busybox, int use_symbolic_links) { __link_f Link = link; diff --git a/busybox.c b/busybox.c index 5f1c56bc3..e454bb6ec 100644 --- a/busybox.c +++ b/busybox.c @@ -377,7 +377,7 @@ static char* install_dir[] = { typedef int (*__link_f)(const char *, const char *); /* create (sym)links for each applet */ -int install_links(const char *busybox, int use_symbolic_links) +static int install_links(const char *busybox, int use_symbolic_links) { __link_f Link = link;