diff options
author | 2005-12-21 01:40:22 +0000 | |
---|---|---|
committer | 2005-12-21 01:40:22 +0000 | |
commit | ae5feee3506f1aa5259009ab0dd200f8b10a80e8 (patch) | |
tree | 971a43b49d285f8c2fb3bf3dfddffcf524907723 /lib/libc/rpc/svc.c | |
parent | make alloc_stack take an optional base, preparation for stack attributes (diff) | |
download | wireguard-openbsd-ae5feee3506f1aa5259009ab0dd200f8b10a80e8.tar.xz wireguard-openbsd-ae5feee3506f1aa5259009ab0dd200f8b10a80e8.zip |
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'lib/libc/rpc/svc.c')
-rw-r--r-- | lib/libc/rpc/svc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c index 24820521200..9b4b068b25e 100644 --- a/lib/libc/rpc/svc.c +++ b/lib/libc/rpc/svc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: svc.c,v 1.20 2005/08/08 08:05:35 espie Exp $ */ +/* $OpenBSD: svc.c,v 1.21 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 @@ -38,10 +38,10 @@ * Copyright (C) 1984, Sun Microsystems, Inc. */ +#include <errno.h> #include <stdlib.h> #include <string.h> -#include <sys/errno.h> #include <rpc/rpc.h> #include <rpc/pmap_clnt.h> |