mirror of
git://git.sv.gnu.org/coreutils
synced 2026-05-19 21:21:58 -04: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
|