~ chicken-core (chicken-5) db89f70e04d13ac8911f39fb52228b0edae62791
commit db89f70e04d13ac8911f39fb52228b0edae62791 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Fri Feb 26 12:01:11 2010 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Fri Feb 26 12:01:11 2010 +0100 use C_char instead of char diff --git a/chicken.h b/chicken.h index 4a89c719..7d671a97 100644 --- a/chicken.h +++ b/chicken.h @@ -531,7 +531,7 @@ typedef unsigned __int64 uint64_t; #define C_header C_uword #ifdef __cplusplus -# define C_text(x) ((char *)(x)) +# define C_text(x) ((C_char *)(x)) #else # define C_text(x) (x) #endifTrap