X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fopenat-die.c;h=4f18d51fab5991cfa09dae7adc1fb26e7e69f61a;hb=e7086a9a301ffcfef17edbcba9e7c0312c33f7a8;hp=0db20b9cd09b4e3bdba253391c63a6d6c2e81c14;hpb=d60f3b0c6b0f93a601acd1cfd3923f94ca05abb0;p=gnulib.git diff --git a/lib/openat-die.c b/lib/openat-die.c index 0db20b9cd..4f18d51fa 100644 --- a/lib/openat-die.c +++ b/lib/openat-die.c @@ -1,6 +1,6 @@ /* Report a save- or restore-cwd failure in our openat replacement and then exit. - Copyright (C) 2005-2006, 2008-2011 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2008-2013 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 @@ -21,7 +21,10 @@ #include -#include "error.h" +#ifndef GNULIB_LIBPOSIX +# include "error.h" +#endif + #include "exitfail.h" #include "gettext.h" @@ -30,10 +33,11 @@ void openat_save_fail (int errnum) { +#ifndef GNULIB_LIBPOSIX error (exit_failure, errnum, _("unable to record current working directory")); - - /* The `noreturn' attribute cannot be applied to error, since it returns +#endif + /* _Noreturn 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 safety feature if exit_failure is 0 (which shouldn't happen). */ @@ -48,8 +52,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 ();