summaryrefslogtreecommitdiff
path: root/Tests/Fortran/myc.c
blob: efd9b68aa5e94c483121ed21786ba369a270284b (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 TEST_MOD
  F_test_mod_sub();
#endif
  return 0;
}