diff options
author | 2006-07-11 20:07:25 +0000 | |
---|---|---|
committer | 2006-07-11 20:07:25 +0000 | |
commit | ea82e68e1968fc98bb3f8a021adffd459741a62c (patch) | |
tree | 1504737d23d474589fd111f74d216148a095f4b4 /usr.bin/ssh/sshpty.c | |
parent | Ensure virtual and profiling interval timers are reset in child process (diff) | |
download | wireguard-openbsd-ea82e68e1968fc98bb3f8a021adffd459741a62c.tar.xz wireguard-openbsd-ea82e68e1968fc98bb3f8a021adffd459741a62c.zip |
move #include <errno.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/sshpty.c')
-rw-r--r-- | usr.bin/ssh/sshpty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshpty.c b/usr.bin/ssh/sshpty.c index 90f5da674ae..0b9d4a02fdc 100644 --- a/usr.bin/ssh/sshpty.c +++ b/usr.bin/ssh/sshpty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshpty.c,v 1.22 2006/07/09 15:15:11 stevesk Exp $ */ +/* $OpenBSD: sshpty.c,v 1.23 2006/07/11 20:07:25 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -18,6 +18,7 @@ #include <sys/types.h> #include <sys/stat.h> +#include <errno.h> #include <fcntl.h> #include <grp.h> #include <paths.h> |