msg_019.c revision 1.3
1/* $NetBSD: msg_019.c,v 1.3 2021/01/31 11:23:01 rillig Exp $ */ 2# 3 "msg_019.c" 3 4// Test for message: void type for '%s' [19] 5 6void global_variable; /* expect: 19 */ 7 8static void unit_variable; /* expect: 19, 226 */ 9 10void 11function(void parameter) /* expect: 61, 231 */ 12{ 13 void local_variable; /* expect: 19 */ 14} 15