summaryrefslogtreecommitdiffstats
path: root/test cases/common/178 bothlibraries/main2.c
blob: e1f4bf8f519868f1bc3d2479a15c9e0166c16b30 (plain)
1
2
3
4
5
6
7
8
9
#include "mylib.h"

DO_IMPORT int func(void);
DO_IMPORT int foo(void);
DO_IMPORT int retval;

int main(void) {
    return func() + foo() == retval ? 0 : 1;
}