coreutils/lib/lchown.h

10 lines
204 B
C
Raw Normal View History

/* Some systems don't have EOPNOTSUPP. */
#ifndef EOPNOTSUPP
1998-07-17 07:23:05 +08:00
# ifdef ENOTSUP
# define EOPNOTSUPP ENOTSUP
1998-07-17 07:23:05 +08:00
# else
/* Some systems don't have ENOTSUP either. */
# define EOPNOTSUPP EINVAL
1998-07-17 07:23:05 +08:00
# endif
#endif