llvm-mos / llvm-mos-sdk

SDK for developing with the llvm-mos compiler
https://www.llvm-mos.org
Other
279 stars 55 forks source link

Fix strpbrk() #376

Closed ivop closed 1 month ago

ivop commented 1 month ago

Hi,

I traced back a misbehaving qe (editor in CP/M-65) to strtok() not working correctly, which in turn turned out to be strpbrk(). This fixes that and also results in a slightly smaller binary.

Regards, Ivo

mysterymath commented 1 month ago

Good catch, thanks!