From aedaf57249096fcd9892daf39a4384d8d21c5376 Mon Sep 17 00:00:00 2001 From: xushiwei Date: Thu, 11 Jul 2024 07:39:56 +0800 Subject: [PATCH] Update Type-Mapping-between-C-and-Go.md --- doc/Type-Mapping-between-C-and-Go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Type-Mapping-between-C-and-Go.md b/doc/Type-Mapping-between-C-and-Go.md index 209097a6..24e9ca8b 100644 --- a/doc/Type-Mapping-between-C-and-Go.md +++ b/doc/Type-Mapping-between-C-and-Go.md @@ -14,7 +14,7 @@ Type Mapping between C and Go | unsigned long | c.Ulong | | | unsigned long long | uint64 | c.UlongLong | | size_t | uintptr | | -| sssize_t | int | | +| sssize_t | int | sizeof(int) = sizeof(uint) = sizeof(uintptr) in Go | | float | float32 | c.Float | | double | float64 | c.Double | | complex float | complex64 |