Remove support in configure for unsupported architectures
[glibc.git] / assert / assert-perr.c
blobcad87dab0d00dbce0d628a72489eb372952e042d
1 /* Copyright (C) 1994-1998,2001,2002,2005,2009,2011
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <assert.h>
21 #include <libintl.h>
22 #include <string.h>
25 /* This function, when passed an error number, a filename, and a line
26 number, prints a message on the standard error stream of the form:
27 a.c:10: foobar: Unexpected error: Computer bought the farm
28 It then aborts program execution via a call to `abort'. */
29 void
30 __assert_perror_fail (int errnum,
31 const char *file, unsigned int line,
32 const char *function)
34 char errbuf[1024];
36 char *e = __strerror_r (errnum, errbuf, sizeof errbuf);
37 __assert_fail_base (_("%s%s%s:%u: %s%sUnexpected error: %s.\n"),
38 e, file, line, function);
40 libc_hidden_def (__assert_perror_fail)