summaryrefslogtreecommitdiffstats
path: root/Tests/Fortran/myc.c
blob: b817dff63c2af2fbb3d3ce34f55ffdab9e9f2536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "foo.h"
extern F_test_mod_sub(void);
extern F_mysub(void);
int myc(void)
{
  F_mysub();
  F_my_sub();
#ifdef F_test_mod_sub
  F_test_mod_sub();
#endif
  return 0;
}