C problem
17-Jul-90 13:13:32
Sb: #113306-C problem
Fm: Mike Spille/Manx 71545,1466
To: Tom Eshelman 73717,3446
It's the -wl option that's doing it to you. You're correct that '\n' is
actually an int, however ANSI states that a compiler should convert ints to
chars and vice versa 'quietly' i.e., it shouldn't give a diagnostic message
about it. However, the -wl option turns on -wa, which will warn about
_any_ conversion, even normally quiet ones. If you change your -wl to
-wl0a the problem should go away. I'm glad ya like the manual 😎