diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-21 01:40:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-21 01:40:26 +0000 |
commit | 1534bb5e4074929a07f1fcc1195962967d5508ce (patch) | |
tree | 81d07eb491e2cc01134d574bdb6da9a6ffa56bf8 /lib/libc/rpc/svc_run.c | |
parent | 0e4fd55dc208bc4388e93e9803a984f9f4e11d12 (diff) |
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'lib/libc/rpc/svc_run.c')
-rw-r--r-- | lib/libc/rpc/svc_run.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/svc_run.c b/lib/libc/rpc/svc_run.c index 40afd62a810..c77ba875b8d 100644 --- a/lib/libc/rpc/svc_run.c +++ b/lib/libc/rpc/svc_run.c @@ -1,4 +1,4 @@ -/* $OpenBSD: svc_run.c,v 1.17 2005/09/10 23:04:26 brad Exp $ */ +/* $OpenBSD: svc_run.c,v 1.18 2005/12/21 01:40:22 millert Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for * unrestricted use provided that this legend is included on all tape @@ -33,7 +33,7 @@ * Wait for input, call server program. */ #include <rpc/rpc.h> -#include <sys/errno.h> +#include <errno.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> |