From: Roland McGrath Date: Thu, 28 Mar 1996 17:19:40 +0000 (+0000) Subject: Thu Mar 28 11:53:26 1996 Roland McGrath X-Git-Tag: cvs/libc-960329~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=43efc1033385fe355baffb0592d90653aeb47fd2;p=thirdparty%2Fglibc.git Thu Mar 28 11:53:26 1996 Roland McGrath * wctype/cname-lookup.h: Find localeinfo.h in ../locale. * wctype/wctype.c: Likewise. * wctype/wctrans.c: Likewise. --- diff --git a/ChangeLog b/ChangeLog index 7dd1a4bd173..c31f24ea4ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Mar 28 11:53:26 1996 Roland McGrath + + * wctype/cname-lookup.h: Find localeinfo.h in ../locale. + * wctype/wctype.c: Likewise. + * wctype/wctrans.c: Likewise. + Thu Mar 28 03:00:43 1996 Roland McGrath * locale/nl_langinfo.c (nl_langinfo): Use DATA->values instead of diff --git a/misc/error.c b/misc/error.c index b12041c7618..49c772dbb58 100644 --- a/misc/error.c +++ b/misc/error.c @@ -172,8 +172,8 @@ error_at_line (status, errnum, file_name, line_number, message, va_alist) static const char *old_file_name; static unsigned int old_line_number; - if (old_line_number == line_number - && (file_name == old_file_name || !strcmp (old_file_name, file_name)) + if (old_line_number == line_number && + (file_name == old_file_name || !strcmp (old_file_name, file_name))) /* Simply return and print nothing. */ return; diff --git a/wctype/cname-lookup.h b/wctype/cname-lookup.h index bef38a12d38..b3c1cdbede6 100644 --- a/wctype/cname-lookup.h +++ b/wctype/cname-lookup.h @@ -17,7 +17,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "localeinfo.h" +#include "../locale/localeinfo.h" /* Some words on the runtime of this functions. Although there is a loop in the function the runtime is asymptotically quasi constant. diff --git a/wctype/wctrans.c b/wctype/wctrans.c index afe47a915d9..5c855d0b9be 100644 --- a/wctype/wctrans.c +++ b/wctype/wctrans.c @@ -20,7 +20,7 @@ Boston, MA 02111-1307, USA. */ #include #include #include -#include "localeinfo.h" +#include "../locale/localeinfo.h" wctrans_t wctrans (const char *property) diff --git a/wctype/wctype.c b/wctype/wctype.c index 36db3b95a47..0f7e478d644 100644 --- a/wctype/wctype.c +++ b/wctype/wctype.c @@ -20,7 +20,7 @@ Boston, MA 02111-1307, USA. */ #include #include #include -#include "localeinfo.h" +#include "../locale/localeinfo.h" wctype_t wctype (const char *property)