mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:43:04 +01:00
Make engine compile on Linux after Blas' macro claning
This commit is contained in:
parent
d20594f95a
commit
44f76e1125
@ -41,6 +41,10 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_FCNTL_H
|
||||
#include <fcntl.h>
|
||||
#endif
|
||||
|
||||
static inline UCHAR* BURP_alloc(ULONG size){
|
||||
return MISC_alloc_burp(size);
|
||||
}
|
||||
@ -921,7 +925,7 @@ static const int MODE_READ = O_RDONLY;
|
||||
static const int MODE_WRITE = O_WRONLY | O_CREAT | O_TRUNC;
|
||||
# else
|
||||
static const int MODE_READ = O_RDONLY;
|
||||
static const int MODE_WRITE = O_WRONLY | O_CREAT
|
||||
static const int MODE_WRITE = O_WRONLY | O_CREAT;
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user