diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-11-22 07:43:53 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-11-22 07:43:53 +0000 |
| commit | 1f3dad5a8dc1e0d17f6f7924552eaf718b255e44 (patch) | |
| tree | 283999b082c94c12b3962535722ff43fa3b41aa0 /sys/i386/linux/linux_socket.c | |
| parent | 55054f3540ce0039fb89e6876616b869a8f2038c (diff) | |
Notes
Diffstat (limited to 'sys/i386/linux/linux_socket.c')
| -rw-r--r-- | sys/i386/linux/linux_socket.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_socket.c b/sys/i386/linux/linux_socket.c index 9267063a7f7e..b803111acb53 100644 --- a/sys/i386/linux/linux_socket.c +++ b/sys/i386/linux/linux_socket.c @@ -25,17 +25,23 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_socket.c,v 1.2 1995/06/07 21:27:57 sos Exp $ + * $Id: linux_socket.c,v 1.1 1995/06/25 17:32:41 sos Exp $ */ -#include <i386/linux/linux.h> +/* XXX we use functions that might not exist. */ +#define COMPAT_43 1 + #include <sys/param.h> #include <sys/systm.h> +#include <sys/sysproto.h> #include <sys/proc.h> #include <sys/socket.h> #include <sys/socketvar.h> + #include <netinet/in.h> +#include <i386/linux/linux.h> +#include <i386/linux/sysproto.h> static int linux_to_bsd_domain(int domain) |
