diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-27 20:43:26 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-27 20:43:26 +0000 |
commit | 1cd6d2b83b757ccd79d8e024905d192d19222f5e (patch) | |
tree | aa8b1ae7d65ca0e2c3bec709df96435b4871a652 /lib | |
parent | b484d0e71735272d31ae11758887457dc7df6c4c (diff) | |
download | coreutils-1cd6d2b83b757ccd79d8e024905d192d19222f5e.tar.xz |
Include <sys/types.h> and declare creat_safer.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fcntl-safer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/fcntl-safer.h b/lib/fcntl-safer.h index 8fc564f81..cab6aab1a 100644 --- a/lib/fcntl-safer.h +++ b/lib/fcntl-safer.h @@ -18,4 +18,7 @@ /* Written by Paul Eggert. */ +#include <sys/types.h> + int open_safer (char const *, int, ...); +int creat_safer (char const *, mode_t); |