2023-12-07 09:12:54 +01:00

10 lines
109 B
C

#ifdef _WIN32
__declspec(dllimport)
#endif
int bottom(void);
int middle(void)
{
return bottom() + 19;
}