1 /* $NetBSD: lsym_storage_class.c,v 1.4 2022/04/24 10:36:37 rillig Exp $ */ 2 3 /* 4 * Tests for the token lsym_storage_class, which represents a storage class as 5 * part of a declaration. 6 */ 7 8 //indent input 9 static int definition_with_internal_linkage; 10 extern int declaration_with_external_linkage; 11 int definition_with_external_linkage; 12 //indent end 13 14 //indent run-equals-input -di0 15