"Robert Virding" <robert.virding@REDACTED> writes:
> That is why the compiler's warnings should stay as warnings and never
> become errors.
To properly enforce this, perhaps we should also suppress the warnings?
#!/usr/bin/awk -f
BEGIN { status = 0 }
{ print $0 }
/Warning:/ { status = 1 }
END { exit(status) }
;-)