8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 18:03:04 +01:00

-Fix error (found by Erik)

This commit is contained in:
brodsom 2003-11-18 10:52:40 +00:00
parent d798872925
commit 03a1e77830

View File

@ -59,13 +59,18 @@
#include <unistd.h>
#endif
#if defined(VMS)
#ifdef WIN_NT
#include <process.h>
#include <io.h> // lseek
#define ERRNO GetLastError()
#elif defined(VMS)
#include <types.h>
#include <file.h>
#elif defined(WIN_NT)
#include <sys/types.h>
#include <sys/file.h>
#else
#include <errno.h>
#include <signal.h>
#else
#include <sys/types.h>
#include <sys/file.h>
#endif
@ -74,13 +79,6 @@
#include <sys/stat.h>
#endif
#ifdef WIN_NT
#include <process.h>
#include <io.h> // lseek
#define ERRNO GetLastError()
#endif
#ifdef SUPERSERVER
#define exit(code) return (code)
#ifdef WIN_NT