diff options
author | Damien Miller <djm@mindrot.org> | 2008-04-04 07:16:35 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2008-04-04 07:16:35 +0200 |
commit | 55754fb0024cb84f99a72e15196fa03456a0c097 (patch) | |
tree | 66912657e70de92d0a44594ae54bb5dcf853be5c /openbsd-compat/bsd-poll.c | |
parent | - (djm) Release 5.0p1 (diff) | |
download | openssh-55754fb0024cb84f99a72e15196fa03456a0c097.tar.xz openssh-55754fb0024cb84f99a72e15196fa03456a0c097.zip |
- (djm) [openbsd-compat/bsd-poll.c] Include stdlib.h to avoid compile-
time warnings on LynxOS. Patch from ops AT iki.fi
Diffstat (limited to '')
-rw-r--r-- | openbsd-compat/bsd-poll.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-poll.c b/openbsd-compat/bsd-poll.c index 85603eab6..284db3a1f 100644 --- a/openbsd-compat/bsd-poll.c +++ b/openbsd-compat/bsd-poll.c @@ -1,4 +1,4 @@ -/* $Id: bsd-poll.c,v 1.2 2008/02/29 02:57:47 dtucker Exp $ */ +/* $Id: bsd-poll.c,v 1.3 2008/04/04 05:16:36 djm Exp $ */ /* * Copyright (c) 2004, 2005, 2007 Darren Tucker (dtucker at zip com au). @@ -23,6 +23,7 @@ # include <sys/select.h> #endif +#include <stdlib.h> #include <errno.h> #include "bsd-poll.h" |