diff options
Diffstat (limited to 'include/types.h')
-rw-r--r-- | include/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/types.h b/include/types.h index 81696aeea..e1413dcd3 100644 --- a/include/types.h +++ b/include/types.h @@ -46,8 +46,8 @@ #ifndef __riscos__ typedef unsigned char byte; #else - /* FIXME it seems that char is unsigned by default and we workaround - * signed/unsigned mismacthes here. */ + /* Norcroft treats char == unsigned char + but char* != unsigned char* */ typedef char byte; #endif #define HAVE_BYTE_TYPEDEF |