* sysdeps/posix/getcwd.c: Prevent compiler warning from redefinition
	of mempcpy.  Reported by Andreas Jaeger.
This commit is contained in:
Ulrich Drepper 1998-09-24 11:03:07 +00:00
parent 369b193374
commit 50a1b8375e
5 changed files with 2194 additions and 2 deletions

View file

@ -1,5 +1,8 @@
1998-09-24 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/posix/getcwd.c: Prevent compiler warning from redefinition
of mempcpy. Reported by Andreas Jaeger.
* misc/regexp.h (compile): Use alloca instead of __alloca. It won't
pollute the namespace since the compiler will resolve it inline.
Reported by Florian La Roche <florian@suse.de>.

View file

@ -1,3 +1,8 @@
1998-09-23 Cristian Gafton <gafton@redhat.com>
* locales/sr_YU: New file.
* SUPPORTED: Add sr_YU.
1998-09-23 Ulrich Drepper <drepper@cygnus.com>
* Makefile: Rewrite install-locales rule.

View file

@ -44,6 +44,7 @@ ru_RU ISO-8859-5
ru_SU KOI8-R
sk_SK ISO-8859-2
sl_SI ISO-8859-2
sr_YU ISO-8859-2
sv_FI ISO-8859-1
sv_SE ISO-8859-1
tr_TR ISO-8859-9

2181
localedata/locales/sr_YU Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,93,94,95,96,97,98 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
@ -136,7 +136,9 @@ extern void free ();
#endif /* Not ANSI_STRING. */
#ifdef _LIBC
# define mempcpy __mempcpy
# ifndef mempcpy
# define mempcpy __mempcpy
# endif
# define HAVE_MEMPCPY 1
#endif