From: drepper Date: Wed, 28 Apr 1999 21:59:54 +0000 (+0000) Subject: (__collate_table, __collate_extra, __collate_element_hash, X-Git-Tag: glibc-2_1_1~386 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=2f218580344afa10e3e8b9ecde62642d53572044 (__collate_table, __collate_extra, __collate_element_hash, __collate_element_strings, __collate_element_values): Don't initialize with 0. --- diff --git a/locale/lc-collate.c b/locale/lc-collate.c index 7052db3062..4376286812 100644 --- a/locale/lc-collate.c +++ b/locale/lc-collate.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_COLLATE category. - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,12 +28,12 @@ extern const u_int32_t _nl_C_LC_COLLATE_symbol_classes[]; _NL_CURRENT_DEFINE (LC_COLLATE); -const u_int32_t *__collate_table = NULL; -const u_int32_t *__collate_extra = NULL; +const u_int32_t *__collate_table; +const u_int32_t *__collate_extra; -const u_int32_t *__collate_element_hash = NULL; -const char *__collate_element_strings = NULL; -const wchar_t *__collate_element_values = NULL; +const u_int32_t *__collate_element_hash; +const char *__collate_element_strings; +const wchar_t *__collate_element_values; const u_int32_t *__collate_symbol_hash = _nl_C_LC_COLLATE_symbol_hash; const char *__collate_symbol_strings = _nl_C_LC_COLLATE_symbol_strings;