sqlite-vec icon indicating copy to clipboard operation
sqlite-vec copied to clipboard

Remove unnecessary redefinitions of uint*_t types

Open ptrcnull opened this issue 7 months ago • 2 comments

while the spec (ISO 9899:1999, 7.18.1.1) makes these typedefs optional, in practice they are defined in <stdint.h> for all supported platforms

meanwhile, types u_int*_t are BSDisms and might not exist, making the typedefs fail with error: unknown type name ‘u_int8_t’, e.g. on Solaris or musl libc

ptrcnull avatar May 05 '25 15:05 ptrcnull

as with #218, it's related to Firefox bugs 1962061 and 1964446

ptrcnull avatar May 05 '25 16:05 ptrcnull

Are there any plans to merge this?

RouHim avatar Oct 17 '25 06:10 RouHim