mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/unix/make_errlist.c: Adjust sys_errlist declaration to what we define in <stdio.h>.
This commit is contained in:
parent
d3f8be6d13
commit
5f6b4f1db0
|
|
@ -1,5 +1,8 @@
|
||||||
2001-07-08 Ulrich Drepper <drepper@redhat.com>
|
2001-07-08 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/make_errlist.c: Adjust sys_errlist declaration to
|
||||||
|
what we define in <stdio.h>.
|
||||||
|
|
||||||
* iconv/iconv_prog.c (main): Don't unconditionally define
|
* iconv/iconv_prog.c (main): Don't unconditionally define
|
||||||
variables only use if _POSIX_MAPPED_FILES is defined.
|
variables only use if _POSIX_MAPPED_FILES is defined.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,11 @@
|
||||||
|
|
||||||
extern int sys_nerr;
|
extern int sys_nerr;
|
||||||
#ifndef HAVE_STRERROR
|
#ifndef HAVE_STRERROR
|
||||||
extern char *sys_errlist[];
|
extern const char *const sys_errlist[];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main (void)
|
||||||
{
|
{
|
||||||
register int i;
|
register int i;
|
||||||
struct tm timenow;
|
struct tm timenow;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue