diff options
Diffstat (limited to 'include/types.h')
-rw-r--r-- | include/types.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/types.h b/include/types.h index e1413dcd3..b41109ee5 100644 --- a/include/types.h +++ b/include/types.h @@ -46,8 +46,9 @@ #ifndef __riscos__ typedef unsigned char byte; #else - /* Norcroft treats char == unsigned char - but char* != unsigned char* */ + /* Norcroft treats char = unsigned char as legal assignment + but char* = unsigned char* as illegal assignment + and the same applies to the signed variants as well */ typedef char byte; #endif #define HAVE_BYTE_TYPEDEF |