aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/178 bothlibraries/main.c
blob: 8237bae0a17a8ef67a9c095e7c4c5c0124fdb279 (plain)
1
2
3
4
5
6
7
8
#include "mylib.h"

DO_IMPORT int func(void);
DO_IMPORT int retval;

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