1 #include <stdio.h> 2 3 #include "testobj.h" 4 5 int obj6func1(int a)6obj6func1 (int a __attribute__ ((unused))) 7 { 8 return 77; 9 } 10 11 int obj6func2(int a)12obj6func2 (int a) 13 { 14 return foo (a) + 46; 15 } 16 17 int preload(int a)18preload (int a) 19 { 20 printf ("testobj6 preload\n"); 21 return a; 22 } 23