Remove outdated fix for O_BINARY / O_TEXT in Haiku

* O_BINARY and O_TEXT were removed from Haiku way back in hrev38962
* This patch removes the fix that used to unset those flags
* Now gcc/intl/loadmsgcat.c is back to the GCC 4.6.3 stock file
Thanks diger for noticing the previously needed fix was still in place unintentionally
This commit is contained in:
Joseph R. Prostko 2012-10-19 17:13:07 -04:00
parent 9ff1e151e8
commit 1272855227

View File

@ -480,8 +480,8 @@ char *alloca ();
# define O_BINARY _O_BINARY
# define O_TEXT _O_TEXT
#endif
#if defined(__BEOS__) || defined(__HAIKU__)
/* BeOS 5 and Haiku R1 have O_BINARY and O_TEXT, but they have no effect. */
#ifdef __BEOS__
/* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */
# undef O_BINARY
# undef O_TEXT
#endif