coreutils/lib/makepath.h
Jim Meyering 5a69bc6e5f Undef __P before defining.
Guard definition with simpler `#if __STDC__'.
1995-05-13 13:10:38 +00:00

16 lines
266 B
C

#if __STDC__
#undef __P
#define __P(args) args
#else
#define __P(args) ()
#endif
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));