Fixed O_BINARY warning.

This commit is contained in:
johns 2002-06-16 09:42:40 +00:00
parent f1935bcf7c
commit 6ed5489124
2 changed files with 11 additions and 2 deletions
src

View file

@ -32,9 +32,13 @@
#include <stdio.h>
#include <stdlib.h>
#include "iocompat.h"
#ifndef _MSC_VER
#include <fcntl.h>
#endif
#include "freecraft.h"
#include "iocompat.h"
#include "campaign.h" // for CurrentMapPath
#include "iolib.h"

View file

@ -35,9 +35,14 @@
#include <ctype.h>
#include <limits.h>
#include "iocompat.h"
#ifndef _MSC_VER
#include <fcntl.h>
#endif
#include "freecraft.h"
#include "iocompat.h"
#include "video.h"
#include "player.h"
#include "font.h"