Update fs.

This commit is contained in:
David Reid
2025-02-20 12:10:26 +10:00
parent 08d6d1fac0
commit 5975db4c76
+4 -4
View File
@@ -579,11 +579,11 @@ extern "C" {
#endif /* FS_USE_STDINT */ #endif /* FS_USE_STDINT */
#if FS_SIZEOF_PTR == 8 #if FS_SIZEOF_PTR == 8
typedef unsigned long long fs_uintptr; typedef fs_uint64 fs_uintptr;
typedef long long fs_intptr; typedef fs_int64 fs_intptr;
#else #else
typedef unsigned int fs_uintptr; typedef fs_uint32 fs_uintptr;
typedef int fs_intptr; typedef fs_int32 fs_intptr;
#endif #endif
typedef unsigned char fs_bool8; typedef unsigned char fs_bool8;