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

DO_IMPORT int func();
DO_IMPORT int retval;

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