CMake/Tests/ExportImport/Export/testLib6c.c
Brad King 61367c69d7 COMP: Fix ExportImport testLib6 on VS6
The compiler does not support multiple source files differing only by
extension in one target.  This renames the C source file in the test.
2009-07-13 09:20:36 -04:00

6 lines
77 B
C

extern int testLib6cxx(void);
int testLib6(void)
{
return testLib6cxx();
}