From 12abfc0fcf4092f9147f8d94d045780d6bc2146d Mon Sep 17 00:00:00 2001 From: luoliwoshang <2643523683@qq.com> Date: Thu, 21 Nov 2024 21:38:11 +0800 Subject: [PATCH] doc:ssize_t --- 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 24e9ca8b..3f31c266 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 | sizeof(int) = sizeof(uint) = sizeof(uintptr) in Go | +| ssize_t | int | sizeof(int) = sizeof(uint) = sizeof(uintptr) in Go | | float | float32 | c.Float | | double | float64 | c.Double | | complex float | complex64 |