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

Diff for /OpenXM_contrib2/asir2000/builtin/miscf.c between version 1.10 and 1.11

version 1.10, 2000/12/05 01:24:50 version 1.11, 2001/03/08 07:49:11
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/builtin/miscf.c,v 1.9 2000/11/14 08:38:38 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.10 2000/12/05 01:24:50 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 73  struct ftab misc_tab[] = {
Line 73  struct ftab misc_tab[] = {
         {"debug",Pdebug,0},          {"debug",Pdebug,0},
         {"shell",Pshell,-2},          {"shell",Pshell,-2},
         {"heap",Pheap,-1},          {"heap",Pheap,-1},
         {"version",Pversion,0},          {"version",Pversion,-99999},
         {"nmono",Pnmono,1},          {"nmono",Pnmono,1},
         {"error",Perror,1},          {"error",Perror,1},
         {"error3",Perror3,3},          {"error3",Perror3,3},
Line 196  Q *rp;
Line 196  Q *rp;
 }  }
   
 unsigned int get_asir_version();  unsigned int get_asir_version();
   char *get_asir_distribution();
   
 void Pversion(rp)  void Pversion(arg,rp)
 Q *rp;  NODE arg;
   Obj *rp;
 {  {
         unsigned int version;          unsigned int version;
           char *distribution;
           Q q;
           STRING str;
           NODE n;
           LIST l;
   
         version = get_asir_version();          version = get_asir_version();
         STOQ(version,*rp);          distribution = get_asir_distribution();
           STOQ(version,q);
           if ( !argc(arg) )
                   *rp = (Obj)q;
           else {
                   MKSTR(str,distribution);
                   n = mknode(2,q,str);
                   MKLIST(l,n);
                   *rp = (Obj)l;
           }
 }  }
   
 extern int nez;  extern int nez;

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

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