mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 21:23:03 +01:00
-Fix error (found by Erik)
This commit is contained in:
parent
d798872925
commit
03a1e77830
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user