summaryrefslogtreecommitdiff
path: root/include/rpc/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rpc/types.h')
-rw-r--r--include/rpc/types.h26
1 files changed, 23 insertions, 3 deletions
diff --git a/include/rpc/types.h b/include/rpc/types.h
index 61ea3c19f..8eff8e718 100644
--- a/include/rpc/types.h
+++ b/include/rpc/types.h
@@ -1,4 +1,3 @@
-/* @(#)types.h 2.3 88/08/15 4.0 RPCSRC */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
* unrestricted use provided that this legend is included on all tape
@@ -27,8 +26,6 @@
* 2550 Garcia Avenue
* Mountain View, California 94043
*/
-/* @(#)types.h 1.18 87/07/24 SMI */
-
/* fixincludes should not add extern "C" to this file */
/*
* Rpc additions to <sys/types.h>
@@ -38,6 +35,12 @@
typedef int bool_t;
typedef int enum_t;
+/* This needs to be changed to uint32_t in the future */
+typedef unsigned long rpcprog_t;
+typedef unsigned long rpcvers_t;
+typedef unsigned long rpcproc_t;
+typedef unsigned long rpcprot_t;
+typedef unsigned long rpcport_t;
#define __dontcare__ -1
@@ -60,6 +63,23 @@ typedef int enum_t;
#ifndef makedev /* ie, we haven't already included it */
#include <sys/types.h>
#endif
+
+#ifndef __u_char_defined
+typedef __u_char u_char;
+typedef __u_short u_short;
+typedef __u_int u_int;
+typedef __u_long u_long;
+typedef __quad_t quad_t;
+typedef __u_quad_t u_quad_t;
+typedef __fsid_t fsid_t;
+# define __u_char_defined
+#endif
+#ifndef __daddr_t_defined
+typedef __daddr_t daddr_t;
+typedef __caddr_t caddr_t;
+# define __daddr_t_defined
+#endif
+
#include <sys/time.h>
#include <sys/param.h>