--- sys-utils/renice.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-utils/renice.c b/sys-utils/renice.c index 879e8bd..f879791 100644 --- a/sys-utils/renice.c +++ b/sys-utils/renice.c @@ -46,9 +46,9 @@ #include <errno.h> #include "nls.h" -int donice(int,int,int); +static int donice(int,int,int); -void usage(int rc) +static void usage(int rc) { printf( _("\nUsage:\n" " renice [-n] priority [-p|--pid] pid [... pid]\n" @@ -141,7 +141,7 @@ main(int argc, char **argv) return errs != 0 ? EXIT_FAILURE : EXIT_SUCCESS; } -int +static int donice(int which, int who, int prio) { int oldprio, newprio; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html