diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-15 09:38:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-15 09:38:12 +0000 |
commit | 7dd05aa71565ecf55a57b4423c4939c3fece18d3 (patch) | |
tree | 24c031f9df2c94838347f6c2ec30a13ffc37456d /lib | |
parent | e2dba23e1a4e8a4d7c5d927399e6b3991361e32f (diff) | |
download | coreutils-7dd05aa71565ecf55a57b4423c4939c3fece18d3.tar.xz |
Reflect s/_die/_fail/ renaming.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/openat.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/openat.h b/lib/openat.h index 1f1990d7f..39b9bb919 100644 --- a/lib/openat.h +++ b/lib/openat.h @@ -51,11 +51,11 @@ int openat (int fd, char const *file, int flags, /* mode_t mode */ ...); DIR *fdopendir (int fd); # define fstatat __OPENAT_ID (fstatat) int fstatat (int fd, char const *file, struct stat *st, int flag); -void openat_restore_die (int) ATTRIBUTE_NORETURN; -void openat_save_die (int) ATTRIBUTE_NORETURN; +void openat_restore_fail (int) ATTRIBUTE_NORETURN; +void openat_save_fail (int) ATTRIBUTE_NORETURN; # else -# define openat_restore_die(Errno) /* empty */ -# define openat_save_die(Errno) /* empty */ +# define openat_restore_fail(Errno) /* empty */ +# define openat_save_fail(Errno) /* empty */ # endif #endif |