diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-28 09:18:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-28 09:18:33 +0000 |
commit | 8cb5f87f68afa3101d04c6dd704e8e1f020b2086 (patch) | |
tree | e386b897ad8401dd650c7346eb655c40c63ceb58 /lib | |
parent | 0b7a9db3fd4bf866fe1f22d74aa017c572f5f5a9 (diff) | |
download | coreutils-8cb5f87f68afa3101d04c6dd704e8e1f020b2086.tar.xz |
update from gnulib
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fcntl--.h | 3 | ||||
-rw-r--r-- | lib/unistd-safer.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/fcntl--.h b/lib/fcntl--.h index 4d8e84959..51b869e68 100644 --- a/lib/fcntl--.h +++ b/lib/fcntl--.h @@ -23,3 +23,6 @@ #undef open #define open open_safer + +#undef creat +#define creat creat_safer diff --git a/lib/unistd-safer.h b/lib/unistd-safer.h index 1b7a7601a..f95999d39 100644 --- a/lib/unistd-safer.h +++ b/lib/unistd-safer.h @@ -20,3 +20,4 @@ int dup_safer (int); int fd_safer (int); +int pipe_safer (int[2]); |