diff options
author | 2005-12-21 01:40:22 +0000 | |
---|---|---|
committer | 2005-12-21 01:40:22 +0000 | |
commit | ae5feee3506f1aa5259009ab0dd200f8b10a80e8 (patch) | |
tree | 971a43b49d285f8c2fb3bf3dfddffcf524907723 /usr.sbin/amd/include | |
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 'usr.sbin/amd/include')
-rw-r--r-- | usr.sbin/amd/include/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/amd/include/config.h b/usr.sbin/amd/include/config.h index 4fdd7ab5a73..f744c1b96c9 100644 --- a/usr.sbin/amd/include/config.h +++ b/usr.sbin/amd/include/config.h @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)config.h 8.1 (Berkeley) 6/6/93 - * $Id: config.h,v 1.6 2004/05/31 10:38:20 otto Exp $ + * $Id: config.h,v 1.7 2005/12/21 01:40:24 millert Exp $ */ #ifdef __GNUC__ @@ -47,9 +47,9 @@ #include "os-defaults.h" #include OS_HDR +#include <errno.h> #include <stdio.h> #include <sys/types.h> -#include <sys/errno.h> #include <sys/time.h> #define clocktime() (clock_valid ? clock_valid : time(&clock_valid)) |