1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2018-2020 Petr Vorel <pvorel@suse.cz> 4 */ 5 6 #ifndef RPC_H__ 7 #define RPC_H__ 8 9 #include "config.h" 10 11 #include <rpc/rpc.h> 12 #include <rpc/types.h> 13 #include <rpc/xdr.h> 14 #include <rpc/svc.h> 15 16 /* 17 * For pmap_unset() and clnt_broadcast(). 18 * Needed for glibc, which does not include <rpc/pmap_clnt.h> in <rpc/rpc.h>. 19 */ 20 #include <rpc/pmap_clnt.h> 21 22 #endif /* RPC_H__ */ 23