blob: 1a4d5a49572a08c57341f41d4c5fcf7d7c0e0f5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "foo.h"
extern void F_test_mod_sub(void);
extern void F_mysub(void);
int myc(void)
{
F_mysub();
F_my_sub();
#ifdef TEST_MOD
F_test_mod_sub();
#endif
return 0;
}
|