From: Mark Wooding Date: Thu, 26 May 2016 08:26:09 +0000 (+0100) Subject: src/c-types-impl.lisp: Fix name of `wchar_t'. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/be2410a046c2c1841ab6422da67bdcb8cb081903?ds=sidebyside src/c-types-impl.lisp: Fix name of `wchar_t'. Not sure how this ended up being wrong. --- diff --git a/src/c-types-impl.lisp b/src/c-types-impl.lisp index fe75d7a..a27b30f 100644 --- a/src/c-types-impl.lisp +++ b/src/c-types-impl.lisp @@ -225,7 +225,7 @@ (define-simple-c-type void "void" :export t) (define-simple-c-type char "char" :export t) (define-simple-c-type (unsigned-char uchar) "unsigned char" :export t) (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 wchar-t "wchar_t" :export t) (define-simple-c-type (int signed signed-int sint) "int" :export t) (define-simple-c-type (unsigned unsigned-int uint) "unsigned" :export t)