summaryrefslogtreecommitdiffstats
path: root/test cases/common/251 add_project_dependencies/lib.c
blob: ac46bfcff69fecb31d886f63e5e41417b3a1aae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <zlib.h>
#include <math.h>

#ifndef DEFINED
#error expected compile_arg not found
#endif

double zero;
int ok(void) {
    void * something = deflate;
    if(something != 0)
        return 0;
    return (int)cos(zero);
}