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

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

am e24624da: am 733e4701: am fa5f2ad4: am bd8f4a85: Merge "Define O_BINARY for...

am e24624da: am 733e4701: am fa5f2ad4: am bd8f4a85: Merge "Define O_BINARY for non-Windows platforms."

* commit 'e24624da':
  Define O_BINARY for non-Windows platforms.
parents 51c17a96 e24624da
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -305,4 +305,12 @@
 */
 */
#define HAVE_PRINTF_ZD 1
#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*/
#endif /*_ANDROID_CONFIG_H*/
+8 −0
Original line number Original line Diff line number Diff line
@@ -363,4 +363,12 @@
 */
 */
#define HAVE_PRINTF_ZD 1
#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*/
#endif /*_ANDROID_CONFIG_H*/
+8 −0
Original line number Original line Diff line number Diff line
@@ -361,4 +361,12 @@
 */
 */
#define HAVE_PRINTF_ZD 1
#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 */
#endif /* _ANDROID_CONFIG_H */
+8 −0
Original line number Original line Diff line number Diff line
@@ -323,4 +323,12 @@
 */
 */
#define HAVE_PREAD 1
#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*/
#endif /*_ANDROID_CONFIG_H*/
+8 −0
Original line number Original line Diff line number Diff line
@@ -366,4 +366,12 @@
 */
 */
#define HAVE_PRINTF_ZD 1
#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 */
#endif /* _ANDROID_CONFIG_H */
Loading