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