2003-06-03 10:34:15 -04:00
|
|
|
#include "doc1.h"
|
2005-08-17 11:48:05 -04:00
|
|
|
#include "foo.h"
|
2006-06-01 13:01:31 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2003-06-03 10:34:15 -04:00
|
|
|
|
|
|
|
int generated();
|
|
|
|
int wrapped();
|
|
|
|
|
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
if (generated()*wrapped()*doc() == 3*5*7)
|
|
|
|
{
|
2006-06-01 13:01:31 -04:00
|
|
|
FILE* fin = fopen(PROJECT_BINARY_DIR "/not_included.h", "r");
|
|
|
|
if(fin)
|
|
|
|
{
|
|
|
|
fclose(fin);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -2;
|
|
|
|
}
|
2003-06-03 10:34:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|