15 lines
186 B
C
Raw Normal View History

#include <stdio.h>
void FiveFunction();
void TwoFunction();
2016-07-09 11:21:54 +02:00
int main()
{
FiveFunction();
TwoFunction();
printf("Dependency test executable ran successfully.\n");
return 0;
}