diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 2003-06-26 11:05:56 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 2003-06-26 11:05:56 +0000 |
commit | 2a805f63001c87581c7bff705ab3ab99058eca97 (patch) | |
tree | da3e1bbb72329c2412caa314739895e154b9f979 /usr.bin/locale | |
parent | 980548ef84e6add2f57891837fcce24c75b9ea2e (diff) | |
download | src-2a805f63001c87581c7bff705ab3ab99058eca97.tar.gz src-2a805f63001c87581c7bff705ab3ab99058eca97.zip |
Notes
Diffstat (limited to 'usr.bin/locale')
-rw-r--r-- | usr.bin/locale/locale.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/usr.bin/locale/locale.c b/usr.bin/locale/locale.c index 418acd7a3184..b88cce94bcf2 100644 --- a/usr.bin/locale/locale.c +++ b/usr.bin/locale/locale.c @@ -311,6 +311,15 @@ list_locales(void) } /* + * qsort() helper function + */ +static int +scmp(const void *s1, const void *s2) +{ + return strcmp(*(const char **)s1, *(const char **)s2); +} + +/* * Output information about all available charmaps * * XXX this function is doing a task in hackish way, i.e. by scaning @@ -356,16 +365,6 @@ list_charmaps(void) } /* - * qsort() helper function - */ -static int -scmp(const void *s1, const void *s2) -{ - return strcmp(*(const char **)s1, *(const char **)s2); -} - - -/* * Retrieve sorted list of system locales (or user locales, if PATH_LOCALE * environment variable is set) */ |