diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/mbtowc.c | 4 | ||||
-rw-r--r-- | stdlib/wctomb.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/mbtowc.c b/stdlib/mbtowc.c index 323adcf599..51fd9ab8f2 100644 --- a/stdlib/mbtowc.c +++ b/stdlib/mbtowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995-1999, 2002 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 @@ -24,7 +24,7 @@ /* Common state for all non-restartable conversion functions. */ -mbstate_t __no_r_state; +mbstate_t __no_r_state attribute_hidden; /* Convert the multibyte character at S, which is no longer than N characters, to its `wchar_t' representation, placing diff --git a/stdlib/wctomb.c b/stdlib/wctomb.c index 61305f8f0a..ae73d5f75d 100644 --- a/stdlib/wctomb.c +++ b/stdlib/wctomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995-1999, 2002 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 @@ -23,7 +23,7 @@ #include <wcsmbs/wcsmbsload.h> -extern mbstate_t __no_r_state; /* Defined in mbtowc.c. */ +extern mbstate_t __no_r_state attribute_hidden; /* Defined in mbtowc.c. */ /* Convert WCHAR into its multibyte character representation, putting this in S and returning its length. |