lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | #include <stdio.h> |
2 | |||||
3 | #include "testobj.h" | ||||
4 | |||||
5 | int | ||||
6 | main (void) | ||||
7 | { | ||||
8 | int res = preload (42); | ||||
9 | |||||
10 | printf ("preload (42) = %d, %s\n", res, res == 92 ? "ok" : "wrong"); | ||||
11 | |||||
12 | return res != 92; | ||||
13 | } | ||||
14 | |||||
15 | int | ||||
16 | foo (int a) | ||||
17 | { | ||||
18 | return a; | ||||
19 | } |