[BACK]Return to option.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Kan

Diff for /OpenXM/src/kan96xx/Kan/option.c between version 1.20 and 1.21

version 1.20, 2016/03/31 05:27:34 version 1.21, 2020/10/06 11:33:46
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.19 2016/03/31 03:22:54 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.20 2016/03/31 05:27:34 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
   #include <string.h>
 #include "datatype.h"  #include "datatype.h"
 #include "stackm.h"  #include "stackm.h"
 #include "extern.h"  #include "extern.h"
Line 10 
Line 11 
 #include "mysig.h"  #include "mysig.h"
   
 extern void ctrlC();  extern void ctrlC();
   void warningOption(char *str);
   
   
 struct object KsystemVariable(ob)  struct object KsystemVariable(ob)
Line 466  struct object KsystemVariable(ob)
Line 468  struct object KsystemVariable(ob)
   return(rob);    return(rob);
 }  }
   
 warningOption(str)  void warningOption(str)
      char *str;       char *str;
 {  {
   fprintf(stderr,"Warning(option.c): %s\n",str);    fprintf(stderr,"Warning(option.c): %s\n",str);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

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