[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.21 and 1.23

version 1.21, 2004/02/25 06:43:52 version 1.23, 2004/03/11 09:53:34
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.20 2003/11/11 06:14:08 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.22 2004/03/11 09:52:56 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 72  void Psleep();
Line 72  void Psleep();
 void Premove_module();  void Premove_module();
 void Pmodule_list();  void Pmodule_list();
 void Pmodule_definedp();  void Pmodule_definedp();
   void Ptest();
   
 void delete_history(int,int);  void delete_history(int,int);
   
Line 112  struct ftab misc_tab[] = {
Line 113  struct ftab misc_tab[] = {
 #endif  #endif
         {0,0,0},          {0,0,0},
 };  };
   
   void Ptest(arg,rp)
   NODE arg;
   Q *rp;
   {
           int r;
   
           r = equalr(CO,ARG0(arg),ARG1(arg));
           STOQ(r,*rp);
   }
   
 void Psleep(arg,rp)  void Psleep(arg,rp)
 NODE arg;  NODE arg;

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

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