2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00

@B fix if O_BINARY is undefined

This commit is contained in:
bebbodl
2016-10-03 20:26:55 +02:00
committed by GitHub
parent d05af0dc8c
commit 51d8e776f1

View File

@ -49,6 +49,10 @@ Copyright © 1995-2001, The AROS Development Team. All rights reserved.
#define ATTRIBUTE_UNUSED __attribute__((unused))
#endif
#if !defined(O_BINARY)
#define O_BINARY 0
#endif
#if (defined(__GNUC__))&&defined(WIN32)
#include <winsock2.h>
#define mkdir(path, mode) mkdir(path)