Diff for /gforth/Attic/forth.h between versions 1.21 and 1.24

version 1.21, 1996/02/13 11:12:17 version 1.24, 1996/07/25 09:25:15
Line 132  typedef Label *Xt; Line 132  typedef Label *Xt;
 /* CODE_ADDRESS is the address of the code jumped to through the code field */  /* CODE_ADDRESS is the address of the code jumped to through the code field */
 #define CODE_ADDRESS(cfa)       (*(Label *)(cfa))  #define CODE_ADDRESS(cfa)       (*(Label *)(cfa))
       /* DOES_CODE is the Forth code does jumps to */        /* DOES_CODE is the Forth code does jumps to */
 #define DOES_CODE(cfa)           (cfa[1])  #define DOES_CODE(cfa)  ({Xt _cfa=(Xt)(cfa); \
 #define DOES_CODE1(cfa)          DOES_CODE(cfa)                            _cfa[0] == symbols[DODOES] ? _cfa[1] : NULL;})
   #define DOES_CODE1(cfa) (cfa[1])
 /* MAKE_CF creates an appropriate code field at the cfa;  /* MAKE_CF creates an appropriate code field at the cfa;
    ca is the code address */     ca is the code address */
 #define MAKE_CF(cfa,ca) ((*(Label *)(cfa)) = ((Label)ca))  #define MAKE_CF(cfa,ca) ((*(Label *)(cfa)) = ((Label)ca))
Line 176  UDCell umdiv (UDCell u, UCell v); Line 177  UDCell umdiv (UDCell u, UCell v);
 DCell smdiv (DCell num, Cell denom);  DCell smdiv (DCell num, Cell denom);
 DCell fmdiv (DCell num, Cell denom);  DCell fmdiv (DCell num, Cell denom);
   
   int memcasecmp(const char *s1, const char *s2, long n);
   

Removed from v.1.21  
changed lines
  Added in v.1.24


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