cgo: implement char type

This type is a bit more difficult because it can be signed or unsigned
depending on the target platform.
This commit is contained in:
Ayke van Laethem
2019-04-20 15:10:27 +02:00
committed by Ron Evans
parent b2e96fc35a
commit 9c46ac4eed
6 changed files with 20 additions and 1 deletions
+1
View File
@@ -36,6 +36,7 @@ extern double globalDouble;
extern _Complex float globalComplexFloat;
extern _Complex double globalComplexDouble;
extern _Complex double globalComplexLongDouble;
extern char globalChar;
extern collection_t globalStruct;
extern int globalStructSize;
extern short globalArray[3];