aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/47 pkgconfig-gen/dependencies/main.c
blob: 397d40c1ce14c70f457abc990fd68bcbb1f5cc26 (plain)
1
2
3
4
5
6
7
8
9
10
#include <simple.h>

#ifndef LIBFOO
#error LIBFOO should be defined in pkgconfig cflags
#endif

int main(int argc, char *argv[])
{
  return simple_function() == 42 ? 0 : 1;
}