am bd8f4a85: Merge "Define O_BINARY for non-Windows platforms."
* commit 'bd8f4a85ce45649dc75fbef139f0deae12f834a7': Define O_BINARY for non-Windows platforms.
This commit is contained in:
commit
fa5f2ad48b
|
@ -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*/
|
||||
|
|
|
@ -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*/
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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*/
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -328,4 +328,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*/
|
||||
|
|
|
@ -345,4 +345,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 */
|
||||
|
|
|
@ -333,4 +333,10 @@
|
|||
*/
|
||||
/* #define HAVE_PRINTF_ZD 1 */
|
||||
|
||||
/*
|
||||
* We need to open binary files using O_BINARY on Windows.
|
||||
* We don't define it on Windows since it is part of the io headers.
|
||||
*/
|
||||
/* #define O_BINARY 0 */
|
||||
|
||||
#endif /*_ANDROID_CONFIG_H*/
|
||||
|
|
Loading…
Reference in New Issue