eliminate gcc dependency for testing char signedness in limits.h

This commit is contained in:
Rich Felker 2013-04-04 19:50:55 -04:00
parent ddfb267b0e
commit 201995f382
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
/* Support signed or unsigned plain-char */
#ifdef __CHAR_UNSIGNED__
#if '\0'-1 > 0
#define CHAR_MIN 0
#define CHAR_MAX 255
#else