Skip to content

Commit

Permalink
map signed char to int8
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Mar 5, 2025
1 parent 366285e commit 71baf73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/mkcgo/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ var cstdTypesToGo = map[string]string{
"uintptr_t": "uintptr",
"char": "byte",
"unsigned char": "byte",
"signed char": "byte",
"signed char": "int8",
"void": "",
}

Expand Down

0 comments on commit 71baf73

Please sign in to comment.