Commit 5975db4c authored by David Reid's avatar David Reid

Update fs.

parent 08d6d1fa
...@@ -579,11 +579,11 @@ extern "C" { ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment