=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2018/include/ox.h,v retrieving revision 1.1 retrieving revision 1.7 diff -u -p -r1.1 -r1.7 --- OpenXM_contrib2/asir2018/include/ox.h 2018/09/19 06:00:58 1.1 +++ OpenXM_contrib2/asir2018/include/ox.h 2021/03/26 07:54:17 1.7 @@ -45,9 +45,12 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM$ + * $OpenXM: OpenXM_contrib2/asir2018/include/ox.h,v 1.6 2020/11/15 16:15:17 fujimoto Exp $ */ #include "com.h" +#if defined(linux) +#include +#endif /* version */ @@ -157,7 +160,11 @@ typedef FILE *ox_stream; /* a macro to check whether data are available in the read buffer */ -#if defined(linux) +#if defined(ANDROID) +#define FP_DATA_IS_AVAILABLE(fp) (__fbufsize(fp) > 0) +#elif !defined(__GLIBC__) && defined(linux) +#define FP_DATA_IS_AVAILABLE(fp) (__freadahead(fp) > 0) +#elif defined(__GLIBC__) && defined(linux) #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_IO_read_ptr < (fp)->_IO_read_end) #elif defined(__FreeBSD__) || defined(__DARWIN__) || (defined(__MACH__) && defined(__ppc__)) || defined(__CYGWIN__) || defined(__INTERIX) #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_r)