- (dtucker) [openbsd-compat/xmmap.c] Need fcntl.h for O_RDRW.

This commit is contained in:
Darren Tucker 2006-07-25 19:52:07 +10:00
parent 28e9ad1bed
commit 94346f8596
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,6 @@
20060725
- (dtucker) [openbsd-compat/xmmap.c] Need fcntl.h for O_RDRW.
20060724
- (djm) OpenBSD CVS Sync
- jmc@cvs.openbsd.org 2006/07/12 13:39:55
@ -5056,4 +5059,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.4438 2006/07/24 13:50:23 dtucker Exp $
$Id: ChangeLog,v 1.4439 2006/07/25 09:52:07 dtucker Exp $

View File

@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* $Id: xmmap.c,v 1.9 2006/07/24 04:51:01 djm Exp $ */
/* $Id: xmmap.c,v 1.10 2006/07/25 09:52:08 dtucker Exp $ */
#include "includes.h"
@ -32,6 +32,9 @@
#include <sys/mman.h>
#endif
#include <sys/stat.h>
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#include <errno.h>
#include <string.h>