mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 15:30:40 +00:00
17 lines
172 B
Plaintext
17 lines
172 B
Plaintext
#include "doc1.h"
|
|
#include "foo.h"
|
|
|
|
int generated();
|
|
int wrapped();
|
|
|
|
int main ()
|
|
{
|
|
if (generated()*wrapped()*doc() == 3*5*7)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|