X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnu%2Fopenat-die.c;h=5f642ac64e5acac12cb78e49ca32d821b2faca61;hb=1a44d77d50f4fb37c0410eed04b82303624ea2ec;hp=022dbd4b5986854f63dff4f2f88ffc52dae6f6b3;hpb=dda6367c9eac71da8f2ab1c60b3df60f19ce4755;p=debian%2Ftar diff --git a/gnu/openat-die.c b/gnu/openat-die.c index 022dbd4b..5f642ac6 100644 --- a/gnu/openat-die.c +++ b/gnu/openat-die.c @@ -2,7 +2,7 @@ /* DO NOT EDIT! GENERATED AUTOMATICALLY! */ /* Report a save- or restore-cwd failure in our openat replacement and then exit. - Copyright (C) 2005-2006, 2008-2010 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2008-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,7 +23,10 @@ #include -#include "error.h" +#ifndef GNULIB_LIBPOSIX +# include "error.h" +#endif + #include "exitfail.h" #include "gettext.h" @@ -32,9 +35,10 @@ void openat_save_fail (int errnum) { +#ifndef GNULIB_LIBPOSIX error (exit_failure, errnum, _("unable to record current working directory")); - +#endif /* The `noreturn' attribute cannot be applied to error, since it returns when its first argument is 0. To help compilers understand that this function does not return, call abort. Also, the abort is a @@ -50,8 +54,10 @@ openat_save_fail (int errnum) void openat_restore_fail (int errnum) { +#ifndef GNULIB_LIBPOSIX error (exit_failure, errnum, _("failed to return to initial working directory")); +#endif /* As above. */ abort ();