Home | History | Annotate | Line # | Download | only in lint1
msg_081.c revision 1.7
      1 /*	$NetBSD: msg_081.c,v 1.7 2024/02/02 19:07:58 rillig Exp $	*/
      2 # 3 "msg_081.c"
      3 
      4 /* Test for message: \a undefined in traditional C [81] */
      5 
      6 /* lint1-flags: -tw -X 351 */
      7 
      8 /* expect+1: warning: \a undefined in traditional C [81] */
      9 char char_a = '\a';
     10 /* expect+1: warning: \a undefined in traditional C [81] */
     11 char char_string_a[] = "The bell\a rings";
     12