1 /*
2  *  Copyright (c) 2008 Sun Microsystems, Inc.
3  *  Written by Ricardo Correia <Ricardo.M.Correia@Sun.COM>
4  *
5  *  This file is part of the SPL, Solaris Porting Layer.
6  *
7  *  The SPL is free software; you can redistribute it and/or modify it
8  *  under the terms of the GNU General Public License as published by the
9  *  Free Software Foundation; either version 2 of the License, or (at your
10  *  option) any later version.
11  *
12  *  The SPL is distributed in the hope that it will be useful, but WITHOUT
13  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15  *  for more details.
16  *
17  *  You should have received a copy of the GNU General Public License along
18  *  with the SPL.  If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef _SPL_RPC_TYPES_H
22 #define	_SPL_RPC_TYPES_H
23 
24 #include <sys/types.h>
25 
26 /* Just enough to support rpc/xdr.h */
27 
28 typedef int bool_t;
29 
30 #endif /* SPL_RPC_TYPES_H */
31