/* $NetBSD: uipc_syscalls_30.c,v 1.2 2007/02/09 21:55:16 ad Exp $ */ /* written by Pavel Cahyna, 2006. Public domain. */ #include __KERNEL_RCSID(0, "$NetBSD: uipc_syscalls_30.c,v 1.2 2007/02/09 21:55:16 ad Exp $"); /* * System call interface to the socket abstraction. */ #include #include #include #include #include #include #include int compat_30_sys_socket(struct lwp *l, void *v, register_t *retval) { int error; error = sys___socket30(l, v, retval); if (error == EAFNOSUPPORT) error = EPROTONOSUPPORT; return (error); }