mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 09:06:49 -04:00
9 lines
188 B
C
9 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
|