]> git.ipfire.org Git - thirdparty/glibc.git/blame - assert/assert-perr.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / assert / assert-perr.c
CommitLineData
b168057a 1/* Copyright (C) 1994-2015 Free Software Foundation, Inc.
47707456 2 This file is part of the GNU C Library.
28f540f4 3
47707456 4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
28f540f4 8
47707456
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
28f540f4
RM
17
18#include <assert.h>
51028f34 19#include <libintl.h>
28f540f4 20#include <string.h>
28f540f4
RM
21
22
28f540f4
RM
23/* This function, when passed an error number, a filename, and a line
24 number, prints a message on the standard error stream of the form:
f8a3b5bf 25 a.c:10: foobar: Unexpected error: Computer bought the farm
28f540f4 26 It then aborts program execution via a call to `abort'. */
28f540f4
RM
27void
28__assert_perror_fail (int errnum,
29 const char *file, unsigned int line,
30 const char *function)
31{
47707456 32 char errbuf[1024];
51028f34 33
f8a3b5bf
UD
34 char *e = __strerror_r (errnum, errbuf, sizeof errbuf);
35 __assert_fail_base (_("%s%s%s:%u: %s%sUnexpected error: %s.\n"),
36 e, file, line, function);
28f540f4 37}
7a9ce79a 38libc_hidden_def (__assert_perror_fail)