summaryrefslogtreecommitdiff
path: root/Tests/InterfaceLinkLibrariesDirect/static_A_private.c
blob: d98a22c2a3f2d2cdd4c9814f04f6427aeb9e3c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef DEF_DIRECT_FROM_A
#  error "DEF_DIRECT_FROM_A incorrectly not defined"
#endif
#ifdef DEF_DIRECT_FROM_A_FOR_EXE
#  error "DEF_DIRECT_FROM_A_FOR_EXE incorrectly defined"
#endif
#ifndef DEF_DIRECT_FROM_A_OPTIONAL
#  error "DEF_DIRECT_FROM_A_OPTIONAL incorrectly not defined"
#endif

extern void a_always(void);

void static_A_private(void)
{
  a_always();
}