mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-24 11:29:10 +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
|