littlekernel / lk

LK embedded kernel
MIT License
3.11k stars 613 forks source link

[libc] Fix UINT16_MAX definition. #293

Closed tworaz closed 3 years ago

tworaz commented 3 years ago

The name of the define provided by limits.h is USHRT_MAX not USHORT_MAX.

travisg commented 3 years ago

Oh yeah you're right. Also looks like INT16_MAX needs to be fixed to (SHORT_MAX). Can you revise?

tworaz commented 3 years ago

INT16_MIN suffered from the same problem. The latest version should fix all of those.