[BACK]Return to ox_pathfinder.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / util

Diff for /OpenXM/src/util/ox_pathfinder.c between version 1.2 and 1.3

version 1.2, 2003/07/21 11:56:34 version 1.3, 2003/07/21 12:41:23
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.1 2003/07/21 11:36:10 takayama Exp $ */  /* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.2 2003/07/21 11:56:34 takayama Exp $ */
 /* Moved from misc-2003/07/cygwin/test.c */  /* Moved from misc-2003/07/cygwin/test.c */
 #include <stdio.h>  #include <stdio.h>
 #include <sys/types.h>  #include <sys/types.h>
Line 30  static int NoX = 0;
Line 30  static int NoX = 0;
   
   
 #define nomemory(a) {fprintf(stderr,"(%d) no more memory.\n",a);exit(10);}  #define nomemory(a) {fprintf(stderr,"(%d) no more memory.\n",a);exit(10);}
 #define mymalloc(a)  malloc(a)  #define mymalloc(a)  sGC_malloc(a)
   
 int ox_pathfinderNoX(int f) {  int ox_pathfinderNoX(int f) {
   if (f < 0) return NoX;    if (f < 0) return NoX;
Line 652  char *getLOAD_SM1_PATH2() {
Line 652  char *getLOAD_SM1_PATH2() {
   p = get_sm1_lib_path();    p = get_sm1_lib_path();
   if (p == NULL) {    if (p == NULL) {
     return("/usr/local/lib/sm1/");      return("/usr/local/lib/sm1/");
     }else{
           return p;
     }
   }
   
   char *getLOAD_K_PATH2(void) {
     char *p;
     p = get_k0_lib_path();
     if (p == NULL) {
       return("/usr/local/lib/kxx97/yacc/");
   }else{    }else{
         return p;          return p;
   }    }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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