blob: 7ea10b9b5bd011036c84679331cc0a0942930a8d [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <stdio.h>
2
3#include "testobj.h"
4
5int
6main (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
15int
16foo (int a)
17{
18 return a;
19}