Fix rackets char type

This commit is contained in:
retropikzel 2024-09-15 12:48:57 +03:00
parent 862c4ff6b3
commit d4ba6bbb41
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@
((equal? type 'uint32) _uint32)
((equal? type 'int64) _int64)
((equal? type 'uint64) _uint64)
((equal? type 'char) _int)
((equal? type 'unsigned-char) _int)
((equal? type 'char) _int8)
((equal? type 'unsigned-char) _int8)
((equal? type 'short) _short)
((equal? type 'unsigned-short) _ushort)
((equal? type 'int) _int)