chiark / gitweb /
src/c-types-impl.lisp: Fix name of `wchar_t'.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 22 Jul 2017 17:12:57 +0000 (18:12 +0100)
Not sure how this ended up being wrong.

src/c-types-impl.lisp

index fe75d7adce454e6fdfb26c25df7f88416007b595..a27b30f8b6afbbe94269069c7ced0e0a5adcb1c6 100644 (file)
@@ -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)