diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-15 22:10:56 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-15 22:10:56 +0000 |
commit | d2d67c9856355f732c83f060e0c69b2e520db65e (patch) | |
tree | e03d17aaedd2722459c37c43d0a9297a63e81fc3 /include | |
parent | 557676bdf528741f188f6af0e7bb5f25e29e7d3e (diff) |
Finished porting stuff to x86 and supporting the Linux 2.2 kernels.
It now compiles....
-Erik
Diffstat (limited to 'include')
-rw-r--r-- | include/limits.h | 6 | ||||
-rw-r--r-- | include/rpc/rpc.h | 2 | ||||
-rw-r--r-- | include/rpc/svc.h | 3 |
3 files changed, 3 insertions, 8 deletions
diff --git a/include/limits.h b/include/limits.h index 8b59c8208..e03e558fd 100644 --- a/include/limits.h +++ b/include/limits.h @@ -39,10 +39,7 @@ Cambridge, MA 02139, USA. */ * #include_next. #if __GNUC__ >= 2 && __STDC__ */ -#if __GNUC__ >= 2 - - /* Have we done that? */ -# if !defined(_GCC_LIMITS_H_) && !defined(_GCC_LIMITS_H) +#if __GNUC__ >= 2 && !defined(_GCC_LIMITS_H_) && !defined(_GCC_LIMITS_H) /* Get the compiler's limits.h, which defines all the ANSI * constants. */ @@ -50,7 +47,6 @@ Cambridge, MA 02139, USA. */ # define _LIBC_LIMITS_H # define _LIBC_LIMITS_H_ # include_next <limits.h> -# endif #else /* Not GCC 2. */ diff --git a/include/rpc/rpc.h b/include/rpc/rpc.h index 1edf4a334..f1da8fa7f 100644 --- a/include/rpc/rpc.h +++ b/include/rpc/rpc.h @@ -60,7 +60,7 @@ * Uncomment-out the next line if you are building the rpc library with * DES Authentication (see the README file in the secure_rpc/ directory). */ -/*#include <rpc/auth_des.h> /* protocol for des style cred */ +/*#include <rpc/auth_des.h>*/ /* protocol for des style cred */ /* Server side only remote procedure callee */ #include <rpc/svc.h> /* service manager and multiplexer */ diff --git a/include/rpc/svc.h b/include/rpc/svc.h index 3cb07ef3f..a36a24ba0 100644 --- a/include/rpc/svc.h +++ b/include/rpc/svc.h @@ -151,8 +151,7 @@ struct svc_req { * u_long prog; * u_long vers; * void (*dispatch)(); - * int protocol; /* like TCP or UDP, zero means do not register - */ + * int protocol; */ /* like TCP or UDP, zero means do not register*/ extern bool_t svc_register(); /* |