[BACK]Return to ox.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2018 / include

Diff for /OpenXM_contrib2/asir2018/include/ox.h between version 1.6 and 1.7

version 1.6, 2020/11/15 16:15:17 version 1.7, 2021/03/26 07:54:17
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2018/include/ox.h,v 1.5 2020/10/31 03:17:14 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2018/include/ox.h,v 1.6 2020/11/15 16:15:17 fujimoto Exp $
 */  */
 #include "com.h"  #include "com.h"
 #if defined(linux)  #if defined(linux)
Line 161  typedef FILE *ox_stream;
Line 161  typedef FILE *ox_stream;
   
 /* a macro to check whether data are available in the read buffer */  /* a macro to check whether data are available in the read buffer */
 #if defined(ANDROID)  #if defined(ANDROID)
 #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_r)  #define FP_DATA_IS_AVAILABLE(fp) (__fbufsize(fp) > 0)
 #elif !defined(__GLIBC__) && defined(linux)  #elif !defined(__GLIBC__) && defined(linux)
 #define FP_DATA_IS_AVAILABLE(fp) (__freadahead(fp) > 0)  #define FP_DATA_IS_AVAILABLE(fp) (__freadahead(fp) > 0)
 #elif defined(__GLIBC__) && defined(linux)  #elif defined(__GLIBC__) && defined(linux)

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>