1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00

fix #define for windows

This commit is contained in:
William M. Brack 2005-07-06 20:22:00 +00:00
parent d37988ac06
commit 12baaecdb7

View File

@ -78,7 +78,7 @@
* on this system, avoid any compilation error
*/
#ifdef O_BINARY
#define RD_FLAGS (O_RDONLY | O_BINARY)
#define RD_FLAGS O_RDONLY | O_BINARY
#else
#define RD_FLAGS O_RDONLY
#endif