diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-26 02:35:18 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-26 02:35:18 +0000 |
commit | 8e816fd43d3514d1ad6793e33c8981e67ac44a88 (patch) | |
tree | b1a14a2e67a758b4ed476a16bf5fd06457b8d289 /usr.bin/ssh/sshlogin.c | |
parent | b7205a0d0c7d06bada09e008d5cc9b282ba3cd94 (diff) |
move #include <sys/param.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/sshlogin.c')
-rw-r--r-- | usr.bin/ssh/sshlogin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshlogin.c b/usr.bin/ssh/sshlogin.c index ef33b3a43ef..1ed25046085 100644 --- a/usr.bin/ssh/sshlogin.c +++ b/usr.bin/ssh/sshlogin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshlogin.c,v 1.22 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: sshlogin.c,v 1.23 2006/07/26 02:35:17 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -42,6 +42,7 @@ #include "includes.h" #include <sys/types.h> +#include <sys/param.h> #include <errno.h> #include <fcntl.h> |