Portability fixes.

This commit is contained in:
Jon Griffiths 2003-08-18 20:00:44 +00:00 committed by Alexandre Julliard
parent 81d19be889
commit 140eb97eef
4 changed files with 10 additions and 1 deletions

View File

@ -17,6 +17,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <fcntl.h>

View File

@ -36,7 +36,9 @@
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif

View File

@ -20,6 +20,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>

View File

@ -18,9 +18,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <fcntl.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "windef.h"
#include "winbase.h"