diff --git a/src/toupper-table.c b/src/toupper-table.c index 6a7abff1..fbfac0fa 100644 --- a/src/toupper-table.c +++ b/src/toupper-table.c @@ -21,7 +21,9 @@ main(void) c = 'a'; while (i < sizeof (table) / sizeof (table[0])) { table[i] = c - ('a' - 'A'); - // printf("%c -> %c\n", c, table[i]); +#ifdef DEBUG + printf("%c -> %c\n", c, table[i]); +#endif i++; c++; }