Import upstream version 1.27
[debian/tar] / gnu / openat-die.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Report a save- or restore-cwd failure in our openat replacement and then exit.
4
5    Copyright (C) 2005-2006, 2008-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 #include <config.h>
21
22 #include "openat.h"
23
24 #include <stdlib.h>
25
26 #ifndef GNULIB_LIBPOSIX
27 # include "error.h"
28 #endif
29
30 #include "exitfail.h"
31
32 #include "gettext.h"
33 #define _(msgid) gettext (msgid)
34
35 void
36 openat_save_fail (int errnum)
37 {
38 #ifndef GNULIB_LIBPOSIX
39   error (exit_failure, errnum,
40          _("unable to record current working directory"));
41 #endif
42   /* _Noreturn cannot be applied to error, since it returns
43      when its first argument is 0.  To help compilers understand that this
44      function does not return, call abort.  Also, the abort is a
45      safety feature if exit_failure is 0 (which shouldn't happen).  */
46   abort ();
47 }
48
49
50 /* Exit with an error about failure to restore the working directory
51    during an openat emulation.  The caller must ensure that fd 2 is
52    not a just-opened fd, even when openat_safer is not in use.  */
53
54 void
55 openat_restore_fail (int errnum)
56 {
57 #ifndef GNULIB_LIBPOSIX
58   error (exit_failure, errnum,
59          _("failed to return to initial working directory"));
60 #endif
61
62   /* As above.  */
63   abort ();
64 }