summaryrefslogtreecommitdiffstats
path: root/Tests/CustomCommand/foo.in
blob: c5ce3403f480f0f512b8acee5fd764e409f3119e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "doc1.h"
#include "foo.h"
#include "config.h"

#include <stdio.h>

int generated();
int wrapped();
int gen_once(void);

int main ()
{
  if (generated()*wrapped()*doc()*gen_once() == 3*5*7*11)
    {
    FILE* fin = fopen(PROJECT_BINARY_DIR "/not_included.h", "r");
    if(fin)
      {
      fclose(fin);
      return 0;
      }
    else
      {
      return -2;
      }
    }
  
  return -1;
}