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/packet.c | |
parent | b7205a0d0c7d06bada09e008d5cc9b282ba3cd94 (diff) |
move #include <sys/param.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/packet.c')
-rw-r--r-- | usr.bin/ssh/packet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index f3c080ed2e4..f1d134cf137 100644 --- a/usr.bin/ssh/packet.c +++ b/usr.bin/ssh/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.138 2006/07/25 02:59:21 stevesk Exp $ */ +/* $OpenBSD: packet.c,v 1.139 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 @@ -43,6 +43,7 @@ #include <sys/types.h> #include <sys/socket.h> #include <sys/time.h> +#include <sys/param.h> #include <netinet/in_systm.h> #include <netinet/in.h> |