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