diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-02-08 14:31:31 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-02-08 14:31:31 +0000 |
commit | a6062f191d387e57de0be8f0fe10f12540c36100 (patch) | |
tree | ea7212626db47a460f34a37a1d4540cceb67fa87 /usr.bin/ssh/ssh.c | |
parent | 82eef00273724d6e209105dda96009ce8472062f (diff) |
move #include <sys/resource.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index ee29fa805fa..a70b6ada57f 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -40,7 +40,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.258 2006/02/08 12:15:27 stevesk Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.259 2006/02/08 14:31:30 stevesk Exp $"); + +#include <sys/resource.h> #include <paths.h> |