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/session.c | |
parent | b7205a0d0c7d06bada09e008d5cc9b282ba3cd94 (diff) |
move #include <sys/param.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/session.c')
-rw-r--r-- | usr.bin/ssh/session.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/session.c b/usr.bin/ssh/session.c index 3866c730bcc..218fb7f1398 100644 --- a/usr.bin/ssh/session.c +++ b/usr.bin/ssh/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.212 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: session.c,v 1.213 2006/07/26 02:35:17 stevesk Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -40,6 +40,7 @@ #include <sys/un.h> #include <sys/stat.h> #include <sys/socket.h> +#include <sys/param.h> #include <errno.h> #include <grp.h> |