mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-03 06:53:31 +08:00
eb4aaec1a5
(ENOSYS): Remove.
10 lines
204 B
C
10 lines
204 B
C
/* Some systems don't have EOPNOTSUPP. */
|
|
#ifndef EOPNOTSUPP
|
|
# ifdef ENOTSUP
|
|
# define EOPNOTSUPP ENOTSUP
|
|
# else
|
|
/* Some systems don't have ENOTSUP either. */
|
|
# define EOPNOTSUPP EINVAL
|
|
# endif
|
|
#endif
|