blob: d4824b171e6e720bf0935777e4f6f20f19556030 (
plain)
1
2
3
4
5
6
7
8
9
|
/* 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
|