mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
bb4c2781ce
Fixes: #19970
15 lines
195 B
C
15 lines
195 B
C
#include "bar.h"
|
|
#include "foo.h"
|
|
#include "foo2.h"
|
|
|
|
int main()
|
|
{
|
|
int zeroSize = 0;
|
|
|
|
#ifdef HAVE_PCH_SUPPORT
|
|
zeroSize = (int)strlen("");
|
|
#endif
|
|
|
|
return foo() + foo2() + bar() + zeroSize;
|
|
}
|