[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.3 and 1.4

version 1.3, 2003/07/21 12:41:23 version 1.4, 2003/07/21 13:36:43
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.2 2003/07/21 11:56:34 takayama Exp $ */  /* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.3 2003/07/21 12:41:23 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 25  static char *get_oxlog_path();
Line 25  static char *get_oxlog_path();
   
   
   
 static int Verbose_get_home = 1;  static int Verbose_get_home = 0;
 static int NoX = 0;  static int NoX = 0;
   
   
Line 35  static int NoX = 0;
Line 35  static int NoX = 0;
 int ox_pathfinderNoX(int f) {  int ox_pathfinderNoX(int f) {
   if (f < 0) return NoX;    if (f < 0) return NoX;
   NoX = f;    NoX = f;
     return f;
   }
   int ox_pathfinderVerbose(int f) {
     extern Verbose_get_home;
     if (f < 0) return Verbose_get_home;
     Verbose_get_home = f;
   return f;    return f;
 }  }
   

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

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