Fix the char type on Guile

This commit is contained in:
retropikzel 2024-09-15 12:46:40 +03:00
parent 029ae48039
commit 862c4ff6b3
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,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) unsigned-short)
((equal? type 'int) int)