Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fa5f2ad4 authored by Raphael Moll's avatar Raphael Moll Committed by Android Git Automerger
Browse files

am bd8f4a85: Merge "Define O_BINARY for non-Windows platforms."

* commit 'bd8f4a85':
  Define O_BINARY for non-Windows platforms.
parents d4894f4b bd8f4a85
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -300,4 +300,12 @@
 */
#define HAVE_PRINTF_ZD 1

/*
 * We need to open binary files using O_BINARY on Windows.
 * Most systems lack (and actually don't need) this flag.
 */
#ifndef O_BINARY
#define O_BINARY 0
#endif

#endif /*_ANDROID_CONFIG_H*/
+8 −0
Original line number Diff line number Diff line
@@ -358,4 +358,12 @@
 */
#define HAVE_PRINTF_ZD 1

/*
 * We need to open binary files using O_BINARY on Windows.
 * Most systems lack (and actually don't need) this flag.
 */
#ifndef O_BINARY
#define O_BINARY 0
#endif

#endif /*_ANDROID_CONFIG_H*/
+8 −0
Original line number Diff line number Diff line
@@ -354,4 +354,12 @@
 */
#define HAVE_PRINTF_ZD 1

/*
 * We need to open binary files using O_BINARY on Windows.
 * Most systems lack (and actually don't need) this flag.
 */
#ifndef O_BINARY
#define O_BINARY 0
#endif

#endif /* _ANDROID_CONFIG_H */
+8 −0
Original line number Diff line number Diff line
@@ -318,4 +318,12 @@
 */
#define HAVE_PREAD 1

/*
 * We need to open binary files using O_BINARY on Windows.
 * Most systems lack (and actually don't need) this flag.
 */
#ifndef O_BINARY
#define O_BINARY 0
#endif

#endif /*_ANDROID_CONFIG_H*/
+8 −0
Original line number Diff line number Diff line
@@ -361,4 +361,12 @@
 */
#define HAVE_PRINTF_ZD 1

/*
 * We need to open binary files using O_BINARY on Windows.
 * Most systems lack (and actually don't need) this flag.
 */
#ifndef O_BINARY
#define O_BINARY 0
#endif

#endif /* _ANDROID_CONFIG_H */
Loading