diff options
author | Jim Meyering <jim@meyering.net> | 1994-11-04 06:04:42 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-11-04 06:04:42 +0000 |
commit | 3b99cd3ae3edea151bc505540dfdd3ddaf00762d (patch) | |
tree | e07aac00b5fc6b8e17413b259d9ff670e9ab92c4 /lib | |
parent | 0ccaadc62c0db66872517d9d6cc40333ed694100 (diff) | |
download | coreutils-3b99cd3ae3edea151bc505540dfdd3ddaf00762d.tar.xz |
.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/makepath.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/makepath.h b/lib/makepath.h new file mode 100644 index 000000000..f555d7b4b --- /dev/null +++ b/lib/makepath.h @@ -0,0 +1,16 @@ +#ifndef __P +#if defined (__GNUC__) || (defined (__STDC__) && __STDC__) +#define __P(args) args +#else +#define __P(args) () +#endif /* GCC. */ +#endif /* Not __P. */ + +int + make_path __P ((const char *_argpath, + int _mode, + int _parent_mode, + uid_t _owner, + gid_t _group, + int _preserve_existing, + const char *_verbose_fmt_string)); |