From 7aa55c1174f170016d970a3f5e86d5115f02611c Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 27 Jul 2019 00:48:46 +0100 Subject: [PATCH] src/c-types-impl.lisp: Remember `signed' as a C-level synonym for `int'. --- src/c-types-impl.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/c-types-impl.lisp b/src/c-types-impl.lisp index 255a470..a5969d4 100644 --- a/src/c-types-impl.lisp +++ b/src/c-types-impl.lisp @@ -253,7 +253,8 @@ (define-simple-c-type (signed-char schar) "signed char" :export t) (define-simple-c-type wchar-t "wchar_t" :export t) -(define-simple-c-type (int signed signed-int sint) "int" :export t) +(define-simple-c-type (int signed signed-int sint) + ("int" "signed") :export t) (define-simple-c-type (unsigned unsigned-int uint) "unsigned" :export t) (define-simple-c-type (short signed-short short-int signed-short-int sshort) -- 2.11.0