diff options
author | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-03-01 18:30:12 +0000 |
---|---|---|
committer | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-03-01 18:30:12 +0000 |
commit | dbb484ec6002723fc89e2231436c2c7ef51d83d3 (patch) | |
tree | 0397dc35b33b0074eda352eed4caf470885bd7a7 /include/rpc | |
parent | d5f087adef0e5f62f565998a8d54d7cb3c3fe2fa (diff) |
Stub out some missing headers which are expected. I'll fill
in what the contents need to be as I encounter the warnings
about missing prototypes, symbols, and such.
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@21 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'include/rpc')
-rw-r--r-- | include/rpc/types.h | 6 | ||||
-rw-r--r-- | include/rpc/xdr.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/rpc/types.h b/include/rpc/types.h new file mode 100644 index 000000000..537d322f1 --- /dev/null +++ b/include/rpc/types.h @@ -0,0 +1,6 @@ +#ifndef _SPL_RPC_TYPES_H +#define _SPL_RPC_TYPES_H + +#include <linux/sunrpc/types.h> + +#endif /* SPL_RPC_TYPES_H */ diff --git a/include/rpc/xdr.h b/include/rpc/xdr.h new file mode 100644 index 000000000..3cd3574eb --- /dev/null +++ b/include/rpc/xdr.h @@ -0,0 +1,6 @@ +#ifndef _SPL_RPC_XDR_H +#define _SPL_RPC_XDR_H + +#include <linux/sunrpc/xdr.h> + +#endif /* SPL_RPC_XDR_H */ |