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

Diff for /OpenXM_contrib2/asir2000/include/ox.h between version 1.7 and 1.10

version 1.7, 2000/08/21 08:31:36 version 1.10, 2001/06/04 02:49:46
Line 23 
Line 23 
  * shall be made on your publication or presentation in any form of the   * shall be made on your publication or presentation in any form of the
  * results obtained by use of the SOFTWARE.   * results obtained by use of the SOFTWARE.
  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by   * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
  * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification   * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
  * for such modification or the source code of the modified part of the   * for such modification or the source code of the modified part of the
  * SOFTWARE.   * SOFTWARE.
  *   *
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/asir2000/include/ox.h,v 1.6 2000/03/28 06:32:22 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.9 2000/09/07 23:59:54 noro Exp $
 */  */
 #include "com.h"  #include "com.h"
   
Line 134 
Line 134 
 #define SM_executeStringByLocalParserInBatchMode 274  #define SM_executeStringByLocalParserInBatchMode 274
 #define SM_getsp 275  #define SM_getsp 275
 #define SM_dupErrors 276  #define SM_dupErrors 276
   #define SM_pushCMOtag 277
   
 #define SM_nop 300  #define SM_nop 300
   
Line 146  typedef FILE *ox_stream;
Line 147  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(linux)  #if defined(linux)
 #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_IO_read_ptr < (fp)->_IO_read_end)  #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_IO_read_ptr < (fp)->_IO_read_end)
 #elif defined(__FreeBSD__)  #elif defined(__FreeBSD__) || (defined(__MACH__) && defined(__ppc__))
 #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_r)  #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_r)
 #elif defined(sparc) || defined(__alpha) || defined(__SVR4) || defined(mips)  #elif defined(sparc) || defined(__alpha) || defined(__SVR4) || defined(mips)
 #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_cnt)  #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_cnt)

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

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