1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Use _dl_fatal_printf instead of a private variant.

This commit is contained in:
Roland McGrath
2012-05-11 11:41:35 -07:00
parent 144c546772
commit ceb809dcae
3 changed files with 8 additions and 14 deletions

View File

@ -1,5 +1,5 @@
/* Operating system specific code for generic dynamic loader functions. Linux.
Copyright (C) 2000-2002,2004-2009,2011 Free Software Foundation, Inc.
Copyright (C) 2000-2012 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
@ -27,18 +27,6 @@
# define MIN(a,b) (((a)<(b))?(a):(b))
#endif
#ifdef SHARED
/* This is the function used in the dynamic linker to print the fatal error
message. */
static void
__attribute__ ((__noreturn__))
dl_fatal (const char *str)
{
_dl_dprintf (2, str);
_exit (1);
}
#endif
#define DL_SYSDEP_OSCHECK(FATAL) \
do { \
/* Test whether the kernel is new enough. This test is only performed \