summaryrefslogtreecommitdiffstats
path: root/test cases/unit/18 pkgconfig static/main.c
blob: cc4649f71673b23d14a7a5ffe1d796882e871749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <foo.h>
#include <stdio.h>

int
main (int argc, char * argv[])
{
    int value = power_level ();
    if (value < 9000) {
        printf ("Power level is %i\n", value);
        return 1;
    }
    printf ("IT'S OVER 9000!!!\n");
    return 0;
}