Files
CMake/Tests/RunCMake/try_run/main.c
2023-10-26 09:20:45 -04:00

9 lines
67 B
C

extern void func(void);
int main(void)
{
func();
return 0;
}