1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-11 22:54:02 +02:00
Files
coreutils/lib/lchown.h

10 lines
188 B
C
Raw Normal View History

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