summaryrefslogtreecommitdiff
path: root/cmamut.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2023-03-12 15:44:52 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2023-03-12 15:44:52 -0300
commitb31f8f03a3148b0a158cb7fe838e9474ab097ab8 (patch)
treea20c86085759507e4c901a69451b1c24ea773d67 /cmamut.lisp
parent4a721bc7ae71489d261a037a6b04d0df00419f89 (diff)
downloadcmamut-b31f8f03a3148b0a158cb7fe838e9474ab097ab8.tar.gz
cmamut-b31f8f03a3148b0a158cb7fe838e9474ab097ab8.zip
Add _Bool type
Diffstat (limited to 'cmamut.lisp')
-rw-r--r--cmamut.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmamut.lisp b/cmamut.lisp
index b0f7144..4306cbe 100644
--- a/cmamut.lisp
+++ b/cmamut.lisp
@@ -35,7 +35,7 @@
'sb-alien:float)
((or (string= tag ":double") (string= tag ":long-double"))
'sb-alien:double)
- ((string= tag ":unsigned-char")
+ ((or (string= tag ":unsigned-char") (string= tag ":_Bool"))
'sb-alien:unsigned-char)
((string= tag ":unsigned-short")
'sb-alien:unsigned-short)