Fix rackets and guiles char type

This commit is contained in:
retropikzel 2024-09-15 12:49:38 +03:00
parent d4ba6bbb41
commit c89417113d
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
((equal? type 'int64) int64) ((equal? type 'int64) int64)
((equal? type 'uint64) uint64) ((equal? type 'uint64) uint64)
((equal? type 'char) int8) ((equal? type 'char) int8)
((equal? type 'unsigned-char) int8) ((equal? type 'unsigned-char) uint8)
((equal? type 'short) short) ((equal? type 'short) short)
((equal? type 'unsigned-short) unsigned-short) ((equal? type 'unsigned-short) unsigned-short)
((equal? type 'int) int) ((equal? type 'int) int)

View File

@ -35,7 +35,7 @@
((equal? type 'int64) _int64) ((equal? type 'int64) _int64)
((equal? type 'uint64) _uint64) ((equal? type 'uint64) _uint64)
((equal? type 'char) _int8) ((equal? type 'char) _int8)
((equal? type 'unsigned-char) _int8) ((equal? type 'unsigned-char) _uint8)
((equal? type 'short) _short) ((equal? type 'short) _short)
((equal? type 'unsigned-short) _ushort) ((equal? type 'unsigned-short) _ushort)
((equal? type 'int) _int) ((equal? type 'int) _int)