mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-13 20:06:37 +08:00
6c26ef5e0d
Use EINVAL instead.
10 lines
188 B
C
10 lines
188 B
C
/* Some systems don't have ENOSYS. */
|
|
#ifndef ENOSYS
|
|
# ifdef ENOTSUP
|
|
# define ENOSYS ENOTSUP
|
|
# else
|
|
/* Some systems don't have ENOTSUP either. */
|
|
# define ENOSYS EINVAL
|
|
# endif
|
|
#endif
|