- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on

older systems.
This commit is contained in:
Darren Tucker 2006-08-24 19:43:16 +10:00
parent fe408b4826
commit e086955531
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,7 @@
20060824
- (dtucker) [openbsd-compat/basename.c] Include errno.h.
- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
older systems.
20060822
- (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in
@ -5291,4 +5293,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4505 2006/08/24 09:41:03 dtucker Exp $
$Id: ChangeLog,v 1.4506 2006/08/24 09:43:16 dtucker Exp $

View File

@ -17,8 +17,13 @@
#include "includes.h"
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#include <string.h>
#include <signal.h>
#include <stdlib.h>
#include "xmalloc.h"