[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.12 and 1.16

version 1.12, 2001/03/19 00:44:01 version 1.16, 2003/03/07 06:39:55
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.11 2001/03/08 07:49:11 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.15 2003/03/07 03:12:23 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 95  struct ftab misc_tab[] = {
Line 95  struct ftab misc_tab[] = {
         {"hex_dump",Phex_dump,2},          {"hex_dump",Phex_dump,2},
         {"peek",Ppeek,1},          {"peek",Ppeek,1},
         {"poke",Ppoke,2},          {"poke",Ppoke,2},
 #if !defined(VISUAL) && DO_PLOT  #if !defined(VISUAL) && defined(DO_PLOT)
         {"xpause",Pxpause,0},          {"xpause",Pxpause,0},
 #endif  #endif
 #if 0  #if 0
Line 233  Obj *rp;
Line 233  Obj *rp;
   
         version = get_asir_version();          version = get_asir_version();
         distribution = get_asir_distribution();          distribution = get_asir_distribution();
         STOQ(version,q);          UTOQ(version,q);
         if ( !argc(arg) )          if ( !argc(arg) )
                 *rp = (Obj)q;                  *rp = (Obj)q;
         else {          else {
Line 271  void Perror3(arg,rp)
Line 271  void Perror3(arg,rp)
 NODE arg;  NODE arg;
 Q *rp;  Q *rp;
 {  {
         char s[BUFSIZ];  
         int code;          int code;
         char *reason,*action;          char *reason,*action;
   
Line 371  Q *rp;
Line 370  Q *rp;
         STOQ(ret,*rp);          STOQ(ret,*rp);
 }  }
   
 #if !defined(VISUAL) && DO_PLOT  #if !defined(VISUAL) && defined(DO_PLOT)
 void Pxpause(rp)  void Pxpause(rp)
 Q *rp;  Q *rp;
 {  {

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.16

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