Simon Josefsson <[EMAIL PROTECTED]> writes:

> Is there a clean fix?

How about something like this?

#if UCHAR_MAX == 255
# define uchar_in_range(c) true
#else
# define uchar_in_range(c) ((c) <= 255)
#endif

and then use uchar_in_range in the rest of your code.


_______________________________________________
bug-gnulib mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnulib

Reply via email to