mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-23 11:18:54 +00:00
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
|