e610dd6c214668a815ea74404e314a7a3a8eca14
[debian/tar] / gnu / strerror-override.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* strerror-override.h --- POSIX compatible system error routine
4
5    Copyright (C) 2010-2013 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #ifndef _GL_STRERROR_OVERRIDE_H
21 # define _GL_STRERROR_OVERRIDE_H
22
23 # include <errno.h>
24 # include <stddef.h>
25
26 /* Reasonable buffer size that should never trigger ERANGE; if this
27    proves too small, we intentionally abort(), to remind us to fix
28    this value.  */
29 # define STACKBUF_LEN 256
30
31 /* If ERRNUM maps to an errno value defined by gnulib, return a string
32    describing the error.  Otherwise return NULL.  */
33 # if REPLACE_STRERROR_0 \
34      || GNULIB_defined_ESOCK \
35      || GNULIB_defined_ESTREAMS \
36      || GNULIB_defined_EWINSOCK \
37      || GNULIB_defined_ENOMSG \
38      || GNULIB_defined_EIDRM \
39      || GNULIB_defined_ENOLINK \
40      || GNULIB_defined_EPROTO \
41      || GNULIB_defined_EMULTIHOP \
42      || GNULIB_defined_EBADMSG \
43      || GNULIB_defined_EOVERFLOW \
44      || GNULIB_defined_ENOTSUP \
45      || GNULIB_defined_ENETRESET \
46      || GNULIB_defined_ECONNABORTED \
47      || GNULIB_defined_ESTALE \
48      || GNULIB_defined_EDQUOT \
49      || GNULIB_defined_ECANCELED \
50      || GNULIB_defined_EOWNERDEAD \
51      || GNULIB_defined_ENOTRECOVERABLE \
52      || GNULIB_defined_EILSEQ
53 extern const char *strerror_override (int errnum);
54 # else
55 #  define strerror_override(ignored) NULL
56 # endif
57
58 #endif /* _GL_STRERROR_OVERRIDE_H */