mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-15 03:41:57 +02:00
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
|