mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-04 03:22:14 +03:00
Update.
1998-09-24 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/unix/siglist.c: Make sys_siglist a weak alias for _sys_siglist. [!HAVE_GNU_LD]: Do not define _sys_siglist as sys_siglist. This is handled correctly by the weak_alias macro.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
1998-09-24 Mark Kettenis <kettenis@phys.uva.nl>
|
||||||
|
|
||||||
|
* sysdeps/unix/siglist.c: Make sys_siglist a weak alias for
|
||||||
|
_sys_siglist. [!HAVE_GNU_LD]: Do not define _sys_siglist as
|
||||||
|
sys_siglist. This is handled correctly by the weak_alias macro.
|
||||||
|
|
||||||
1998-09-24 Ulrich Drepper <drepper@cygnus.com>
|
1998-09-24 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* sysdeps/posix/getcwd.c: Prevent compiler warning from redefinition
|
* sysdeps/posix/getcwd.c: Prevent compiler warning from redefinition
|
||||||
|
@@ -163,7 +163,7 @@ extern int _getopt_internal ();
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Make sure we later can get all the definitions and declarations. */
|
/* Make sure we later can get all the definitions and declarations. */
|
||||||
#undef __need_getopt
|
#undef __need_getopt
|
||||||
|
|
||||||
#endif /* getopt.h */
|
#endif /* getopt.h */
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@@ -18,10 +18,6 @@
|
|||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#ifndef HAVE_GNU_LD
|
|
||||||
#define _sys_siglist sys_siglist
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* This is a list of all known signal numbers. */
|
/* This is a list of all known signal numbers. */
|
||||||
|
|
||||||
const char *const _sys_siglist[] =
|
const char *const _sys_siglist[] =
|
||||||
@@ -60,3 +56,5 @@ const char *const _sys_siglist[] =
|
|||||||
N_("User defined signal 2"),
|
N_("User defined signal 2"),
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
weak_alias (_sys_siglist, sys_siglist)
|
||||||
|
Reference in New Issue
Block a user