Diff for /gforth/engine/libcc.h.in between versions 1.13 and 1.14

version 1.13, 2012/03/22 16:27:11 version 1.14, 2012/03/23 21:19:54
Line 42  extern __thread char *gforth_UP; Line 42  extern __thread char *gforth_UP;
 extern void *gforth_engine(void *, Cell *, Cell *, Float *, char *);  extern void *gforth_engine(void *, Cell *, Cell *, Float *, char *);
 extern char *cstr(char *from, Cell size);  extern char *cstr(char *from, Cell size);
 extern char *tilde_cstr(char *from, Cell size);  extern char *tilde_cstr(char *from, Cell size);
 extern __thread jmp_buf throw_jmp_buf;  extern __thread jmp_buf *throw_jmp_handler;
 #define GFORTH_ARGS void  #define GFORTH_ARGS void
 #else  #else
 #define gforth_SP *((Cell **)(gforth_pointers(0)))  #define gforth_SP *((Cell **)(gforth_pointers(0)))
Line 53  extern __thread jmp_buf throw_jmp_buf; Line 53  extern __thread jmp_buf throw_jmp_buf;
 #define gforth_engine ((char *(*)(void *, Cell *, Cell *, Float *, char *))(((void **)(gforth_pointers(5)))))  #define gforth_engine ((char *(*)(void *, Cell *, Cell *, Float *, char *))(((void **)(gforth_pointers(5)))))
 #define cstr ((char *(*)(char *, Cell))(((void **)(gforth_pointers(6)))))  #define cstr ((char *(*)(char *, Cell))(((void **)(gforth_pointers(6)))))
 #define tilde_cstr ((char *(*)(char *, Cell))(((void **)(gforth_pointers(7)))))  #define tilde_cstr ((char *(*)(char *, Cell))(((void **)(gforth_pointers(7)))))
 #define throw_jmp_buf *((jmp_buf*)(gforth_pointers(8)))  #define throw_jmp_handler *((jmp_buf**)(gforth_pointers(8)))
 #define GFORTH_ARGS void *(*gforth_pointers)(Cell)  #define GFORTH_ARGS void *(*gforth_pointers)(Cell)
 #endif  #endif
   

Removed from v.1.13  
changed lines
  Added in v.1.14


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