matter.c

Cross-platform minimalist libc
git clone git://git.finwo.net/lib/matter.c
Log | Files | Refs | README | LICENSE

commit 77cc24910b21041ff3fe0bbe0668960a7ee61784
parent 3117c90b2df1f22db2837a8bc5f52f3e3fac9640
Author: Yersa Nordman <finwo@pm.me>
Date:   Sat, 12 Oct 2019 01:14:26 +0200

Added missing semicolon

Diffstat:
Minclude/stdint.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/stdint.h b/include/stdint.h @@ -27,7 +27,7 @@ /* (u)int32_t */ #if (ULONG_MAX == 0xffffffffUL) typedef unsigned long uint32_t; - typedef signed long int32_t + typedef signed long int32_t; #elif (UINT_MAX == 0xffffffffUL) typedef unsigned int uint32_t; typedef signed int int32_t;