mirror of
https://github.com/openharmony/third_party_cmake.git
synced 2026-07-25 07:05:34 -04:00
16 lines
155 B
Plaintext
16 lines
155 B
Plaintext
#include "doc1.h"
|
|
|
|
int generated();
|
|
int wrapped();
|
|
|
|
int main ()
|
|
{
|
|
if (generated()*wrapped()*doc() == 3*5*7)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|