ibcs2_types.h revision 11394
111394Sswallace/*	$NetBSD: ibcs2_types.h,v 1.5 1995/08/14 01:11:54 mycroft Exp $	*/
211394Sswallace
311394Sswallace/*
411394Sswallace * Copyright (c) 1994 Scott Bartram
511394Sswallace * All rights reserved.
611394Sswallace *
711394Sswallace * Redistribution and use in source and binary forms, with or without
811394Sswallace * modification, are permitted provided that the following conditions
911394Sswallace * are met:
1011394Sswallace * 1. Redistributions of source code must retain the above copyright
1111394Sswallace *    notice, this list of conditions and the following disclaimer.
1211394Sswallace * 2. Redistributions in binary form must reproduce the above copyright
1311394Sswallace *    notice, this list of conditions and the following disclaimer in the
1411394Sswallace *    documentation and/or other materials provided with the distribution.
1511394Sswallace * 3. All advertising materials mentioning features or use of this software
1611394Sswallace *    must display the following acknowledgement:
1711394Sswallace *      This product includes software developed by Scott Bartram.
1811394Sswallace * 4. The name of the author may not be used to endorse or promote products
1911394Sswallace *    derived from this software without specific prior written permission
2011394Sswallace *
2111394Sswallace * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2211394Sswallace * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2311394Sswallace * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2411394Sswallace * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2511394Sswallace * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2611394Sswallace * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2711394Sswallace * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2811394Sswallace * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2911394Sswallace * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3011394Sswallace * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3111394Sswallace */
3211394Sswallace
3311394Sswallace#ifndef	_IBCS2_TYPES_H
3411394Sswallace#define	_IBCS2_TYPES_H
3511394Sswallace
3611394Sswallacetypedef unsigned char	ibcs2_uchar_t;
3711394Sswallacetypedef unsigned long	ibcs2_ulong_t;
3811394Sswallace
3911394Sswallacetypedef char *		ibcs2_caddr_t;
4011394Sswallacetypedef long		ibcs2_daddr_t;
4111394Sswallacetypedef long		ibcs2_off_t;
4211394Sswallacetypedef long		ibcs2_key_t;
4311394Sswallacetypedef unsigned short	ibcs2_uid_t;
4411394Sswallacetypedef unsigned short	ibcs2_gid_t;
4511394Sswallacetypedef short		ibcs2_nlink_t;
4611394Sswallacetypedef short		ibcs2_dev_t;
4711394Sswallacetypedef unsigned short	ibcs2_ino_t;
4811394Sswallacetypedef unsigned int	ibcs2_size_t;
4911394Sswallacetypedef long		ibcs2_time_t;
5011394Sswallacetypedef long		ibcs2_clock_t;
5111394Sswallacetypedef unsigned short	ibcs2_mode_t;
5211394Sswallacetypedef short		ibcs2_pid_t;
5311394Sswallace
5411394Sswallace#endif /* _IBCS2_TYPES_H */
55