CMake/Tests/Fortran/myc.c

13 lines
168 B
C
Raw Normal View History

2008-10-29 14:58:40 +00:00
#include "foo.h"
extern F_test_mod_sub(void);
extern F_mysub(void);
int myc(void)
2008-10-29 14:58:40 +00:00
{
F_mysub();
F_my_sub();
#ifdef TEST_MOD
2008-10-29 14:58:40 +00:00
F_test_mod_sub();
#endif
return 0;
2008-10-29 14:58:40 +00:00
}