Fix non-w32 builds

This commit is contained in:
Stas Degteff 2005-11-04 07:33:44 +00:00
parent e36aab7783
commit c74c7763ac

View File

@ -55,6 +55,9 @@ extern char tl[256], tu[256];
#define g_tolower(c) tl[(int)(uint8_t)(c)] #define g_tolower(c) tl[(int)(uint8_t)(c)]
#define g_toupper(c) tu[(int)(uint8_t)(c)] #define g_toupper(c) tu[(int)(uint8_t)(c)]
#endif #endif
#else
#define g_tolower(c) tolower(c)
#define g_toupper(c) toupper(c)
#endif #endif