1#include <stdio.h>
2
3#include "../lib.h"
4
5SYMBOL_IMPORT int get_@LIBTYPE@@DEPENDENCY@dep_value (void);
6
7int main(void) {
8  int val;
9
10  val = get_@LIBTYPE@@DEPENDENCY@dep_value ();
11  if (val != @VALUE@) {
12    printf("@LIBTYPE@@DEPENDENCY@ was %i instead of @VALUE@\n", val);
13    return -1;
14  }
15  return 0;
16}
17