Define __sa_family_t.

This commit is contained in:
kleink 2000-06-26 15:45:43 +00:00
parent e695f72a2e
commit 8e34a044db
1 changed files with 5 additions and 4 deletions

View File

@ -1,11 +1,11 @@
/* $NetBSD: ansi.h,v 1.1 2000/06/04 08:50:28 itojun Exp $ */ /* $NetBSD: ansi.h,v 1.2 2000/06/26 15:45:43 kleink Exp $ */
/*- /*-
* Copyright (c) 2000 The NetBSD Foundation, Inc. * Copyright (c) 2000 The NetBSD Foundation, Inc.
* All rights reserved. * All rights reserved.
* *
* This code is derived from software contributed to The NetBSD Foundation * This code is derived from software contributed to The NetBSD Foundation
* by Jun-ichiro itojun Hagino. * by Jun-ichiro itojun Hagino and by Klaus Klein.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
@ -39,8 +39,9 @@
#ifndef _SYS_ANSI_H_ #ifndef _SYS_ANSI_H_
#define _SYS_ANSI_H_ #define _SYS_ANSI_H_
#include <sys/cdefs.h> #include <machine/int_types.h>
typedef unsigned int __socklen_t; typedef __uint8_t __sa_family_t;
typedef unsigned int __socklen_t;
#endif /* _SYS_ANSI_H_ */ #endif /* _SYS_ANSI_H_ */