Diff for /gforth/engine/forth.h between versions 1.116 and 1.117

version 1.116, 2011/12/31 15:29:26 version 1.117, 2012/03/13 18:40:56
Line 464  extern int debug; Line 464  extern int debug;
 # define debug 0  # define debug 0
 #endif  #endif
   
 extern Cell *gforth_SP;  extern __thread Cell *gforth_SP;
 extern Cell *gforth_RP;  extern __thread Cell *gforth_RP;
 extern Address gforth_LP;  extern __thread Address gforth_LP;
 extern Float *gforth_FP;  extern __thread Float *gforth_FP;
 extern Address gforth_UP;  extern __thread Address gforth_UP;
 #ifndef HAS_LINKBACK  #ifndef HAS_LINKBACK
 extern void * gforth_pointers[];  extern __thread void * gforth_pointers[];
 #endif  #endif
   
 #ifdef HAS_FFCALL  #ifdef HAS_FFCALL
 extern Cell *gforth_RP;  
 extern Address gforth_LP;  
 extern void gforth_callback(Xt* fcall, void * alist);  extern void gforth_callback(Xt* fcall, void * alist);
 #endif  #endif
   

Removed from v.1.116  
changed lines
  Added in v.1.117


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