=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/locale/locale.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- src/usr.bin/locale/locale.c 2013/07/01 00:39:14 1.6 +++ src/usr.bin/locale/locale.c 2013/11/13 20:44:21 1.7 @@ -1,4 +1,4 @@ -/* $OpenBSD: locale.c,v 1.6 2013/07/01 00:39:14 fgsch Exp $ */ +/* $OpenBSD: locale.c,v 1.7 2013/11/13 20:44:21 deraadt Exp $ */ /* * Copyright (c) 2013 Stefan Sperling * @@ -35,7 +35,7 @@ { 0, NULL}, }; -void +static void put_assignment(const char *name, const char *value, int double_quoted) { char c; @@ -62,8 +62,8 @@ putchar('\n'); } -void -show_current_locale() +static void +show_current_locale(void) { char *lang, *lc_all; int i; @@ -260,7 +260,7 @@ NULL }; -void +static void show_locales(void) { int i = 0; @@ -269,7 +269,7 @@ puts(some_locales[i++]); } -void +static void show_charsets(void) { char *charset; @@ -284,7 +284,7 @@ } while (charset); } -void +static void usage(void) { fprintf(stderr, "usage: %s [-a | -m]\n", __progname);