openfoam/applications/test/wmake1/oldStub.C
Mark Olesen 939144233c STYLE: adjusted wording and messages for wmake
- add an additional test for wmake pre-processing
2019-04-03 08:57:01 +02:00

18 lines
283 B
C

// Some test code
#include "IOstreams.H"
namespace Foam
{
void printTest()
{
Info<< nl << "Using old stub" << nl;
#if OPENFOAM
Info<< "OPENFOAM=" << OPENFOAM << nl;
#else
Info<< "OPENFOAM is undefined" << nl;
#endif
}
}