1 /* $OpenBSD: types.h,v 1.2 1997/09/21 10:46:17 niklas Exp $ */ 2 /* $NetBSD: types.h,v 1.8 1995/04/29 05:28:05 cgd Exp $ */ 3 4 /* 5 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for 6 * unrestricted use provided that this legend is included on all tape 7 * media and as a part of the software program in whole or part. Users 8 * may copy or modify Sun RPC without charge, but are not authorized 9 * to license or distribute it to anyone else except as part of a product or 10 * program developed by the user. 11 * 12 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE 13 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR 14 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. 15 * 16 * Sun RPC is provided with no support and without any obligation on the 17 * part of Sun Microsystems, Inc. to assist in its use, correction, 18 * modification or enhancement. 19 * 20 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE 21 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC 22 * OR ANY PART THEREOF. 23 * 24 * In no event will Sun Microsystems, Inc. be liable for any lost revenue 25 * or profits or other special, indirect and consequential damages, even if 26 * Sun has been advised of the possibility of such damages. 27 * 28 * Sun Microsystems, Inc. 29 * 2550 Garcia Avenue 30 * Mountain View, California 94043 31 * 32 * from: @(#)types.h 1.18 87/07/24 SMI 33 * @(#)types.h 2.3 88/08/15 4.0 RPCSRC 34 */ 35 36 /* 37 * Rpc additions to <sys/types.h> 38 */ 39 #ifndef _RPC_TYPES_H 40 #define _RPC_TYPES_H 41 42 #define bool_t int32_t 43 #define enum_t int32_t 44 #define __dontcare__ -1 45 46 #ifndef FALSE 47 # define FALSE (0) 48 #endif 49 #ifndef TRUE 50 # define TRUE (1) 51 #endif 52 #ifndef NULL 53 # define NULL 0 54 #endif 55 56 #define mem_alloc(bsize) malloc(bsize) 57 #define mem_free(ptr, bsize) free(ptr) 58 59 #ifndef makedev /* ie, we haven't already included it */ 60 #include <sys/types.h> 61 #endif 62 #include <sys/time.h> 63 64 #endif /* !_RPC_TYPES_H */ 65