diff options
author | 2006-07-02 22:45:59 +0000 | |
---|---|---|
committer | 2006-07-02 22:45:59 +0000 | |
commit | 102c34fbffebfa67b8495abea74352954630538a (patch) | |
tree | 53b67589e5057bd9dbd6ca4222f6697ca2af6de2 /usr.bin/ssh/sshpty.c | |
parent | for cvs tag, tag all files in the local directory if no file argument (diff) | |
download | wireguard-openbsd-102c34fbffebfa67b8495abea74352954630538a.tar.xz wireguard-openbsd-102c34fbffebfa67b8495abea74352954630538a.zip |
move #include <grp.h> out of includes.h
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 72c303ed574..37c7acbf7ad 100644 --- a/usr.bin/ssh/sshpty.c +++ b/usr.bin/ssh/sshpty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshpty.c,v 1.19 2006/03/25 13:17:03 djm Exp $ */ +/* $OpenBSD: sshpty.c,v 1.20 2006/07/02 22:45:59 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 <grp.h> #include <paths.h> #include <termios.h> #include <util.h> |