Casting `strcmp` to `__compar_fn_t` doesn't work on Windows, the build
fails. Instead, cast `strcmp` to the required function type:
`(int(*)(const void*, const void*)`
||
(bsearch
(tok, features->knowncolors, features->sz_knowncolors,
- sizeof(char *), (__compar_fn_t) strcmp)) == NULL) {
+ sizeof(char *), (int(*)(const void*, const void*)) strcmp)) == NULL) {
/* if tok was not found in known_colors */
rc = colorxlate(name, color, features->color_type);
if (rc != COLOR_OK) {