1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Mon Mar 13 01:48:16 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>

* Makefile ($(libc.a)(__.SYMDEF)): Target removed.
	[$(build-shared)=yes] (lib): Depend on $(common-objpfx)libc.so.

	* sysdeps/stub/ulimit.c: Don't include gnu-stabs.h.
	* sysdeps/stub/pause.c: Likewise.
	* sysdeps/stub/time.c: Likewise.

	* stdlib/mbtowc.c: #if 0 out code for non-ASCII chars until the
 	locale data format is implemented.
	* stdlib/wctomb.c: Likewise.

	* mach/Makefile ($(objpfx)errsystems.c): Reenable this rule; the
 	gcc bug is fixed.
	* mach/errsystems.c: File removed.

	* Makeconfig (libc.a): Variable removed.
	(+link): Don't use it.

	* configure.in (AC_ARG_ENABLE calls): Use $enableval instead of
 	assuming `yes'.
This commit is contained in:
Roland McGrath
1995-03-13 06:51:32 +00:00
parent 4ca6860994
commit 01a36ad307
5 changed files with 40 additions and 35 deletions

View File

@ -16,7 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
#include <ansidecl.h>
#include <errno.h>
#include <unistd.h>
@ -25,18 +24,10 @@ Cambridge, MA 02139, USA. */
This is supposed to always return -1 and set errno to EINTR,
but rules were meant to be broken. */
int
DEFUN_VOID(pause)
pause ()
{
errno = ENOSYS;
return(-1);
return -1;
}
#ifdef HAVE_GNU_LD
#include <gnu-stabs.h>
stub_warning(pause);
#endif /* GNU stabs. */
stub_warning (pause)