summaryrefslogtreecommitdiff
path: root/test cases/linuxlike/4 extdep static lib/lib.c
blob: 2f3b3c9a5dbf461e6638b568bcecbbbb902b20f0 (plain)
1
2
3
4
5
6
7
8
#include<zlib.h>

int statlibfunc() {
    void * something = deflate;
    if(something != 0)
        return 0;
    return 1;
}