[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.13 and 1.17

version 1.13, 2001/10/09 01:36:19 version 1.17, 2003/01/28 08:38:58
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.12 2001/08/20 09:03:26 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.16 2001/12/27 07:51:16 noro Exp $
 */  */
 #include "com.h"  #include "com.h"
   
Line 147  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__) || (defined(__MACH__) && defined(__ppc__))  #elif defined(__FreeBSD__) || (defined(__MACH__) && defined(__ppc__)) || defined(__CYGWIN__)
 #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) || defined(_IBMR2)  #elif defined(sparc) || defined(__alpha) || defined(__SVR4) || defined(mips) || defined(_IBMR2)
 #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_cnt)  #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_cnt)
Line 159  typedef FILE *ox_stream;
Line 159  typedef FILE *ox_stream;
 --->FIXIT  --->FIXIT
 #endif  #endif
   
   /* environement is defined in libpari.a */
 extern jmp_buf environnement;  extern jmp_buf environnement;
   
 extern jmp_buf main_env;  extern JMP_BUF main_env;
   
 extern int *StackBottom;  extern int *StackBottom;
 extern int ox_do_copy, ox_do_count, ox_count_length;  extern int ox_do_copy, ox_do_count, ox_count_length;
 extern char *ox_copy_bptr;  extern char *ox_copy_bptr;
Line 170  extern struct IOFP iofp[];
Line 172  extern struct IOFP iofp[];
   
 extern char *parse_strp;  extern char *parse_strp;
   
   #if 0
 #define LBUFSIZ BUFSIZ*10  #define LBUFSIZ BUFSIZ*10
   #else
   #define LBUFSIZ BUFSIZ
   #endif
   
 /* prototypes */  /* prototypes */
   

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.17

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