[BACK]Return to util.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/util.c between version 1.6 and 1.10

version 1.6, 2000/12/11 09:28:03 version 1.10, 2003/08/23 01:42:53
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/parse/util.c,v 1.5 2000/12/05 01:24:57 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/util.c,v 1.9 2003/08/21 08:05:02 saito Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "base.h"  #include "base.h"
 #include "parse.h"  #include "parse.h"
 #if defined(VISUAL)  #if defined(__GNUC__) || defined(VISUAL) || (defined(__MACH__) && defined(__ppc__)) || defined(__FreeBSD__)
 #include <stdarg.h>  #include <stdarg.h>
 #else  #else
 #include <varargs.h>  #include <varargs.h>
Line 121  NODE ind;
Line 121  NODE ind;
 pointer *vp;  pointer *vp;
 {  {
         Obj len,row,col;          Obj len,row,col;
         int i,l;          int i;
         NODE n,n0;          NODE n,n0;
         VECT v;          VECT v;
         Q q;          Q q;
Line 191  NODE ind;
Line 191  NODE ind;
 pointer b;  pointer b;
 {  {
         Obj len,row,col;          Obj len,row,col;
         int i,l;          int i;
         NODE n,n0;          NODE n,n0;
   
         if ( a && OID(a) == O_BYTEARRAY ) {          if ( a && OID(a) == O_BYTEARRAY ) {
Line 285  P p;
Line 285  P p;
         return ( r );          return ( r );
 }  }
   
 #if defined(VISUAL)  #if defined(__GNUC__) || defined(VISUAL) || (defined(__MACH__) && defined(__ppc__)) || defined(__FreeBSD__)
 NODE mknode(int ac,...)  NODE mknode(int ac,...)
 {  {
         va_list ap;          va_list ap;

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

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