1 static int filelocal
= 2; /* In Data section */
2 static int filelocal_bss
; /* In BSS section */
6 static const int filelocal_ro
= 202; /* In Read-Only Data section */
13 static int funclocal
= 3; /* In Data section */
14 static int funclocal_bss
; /* In BSS section */
15 static const int funclocal_ro
= 203; /* RO Data */
16 static const int funclocal_ro_bss
; /* RO Data */
24 static int funclocal
= 4; /* In data section */
25 static int funclocal_bss
; /* In BSS section */
34 /* On some systems, such as AIX, unreferenced variables are deleted
35 from the executable. */
38 void useit1 (int val
);
41 useit1 (filelocal_bss
);
42 useit1 (filelocal_ro
);
48 void useit1 (val
) int val
;