aboutsummaryrefslogtreecommitdiff
path: root/test cases/29 external dep/prog.c
blob: cea986d50b21dc94bc4e969812f9ffef59373566 (plain)
1
2
3
4
5
6
7
8
#include<zlib.h>

int main(int argc, char **argv) {
    void * something = deflate;
    if(something != 0)
        return 0;
    return 1;
}