15 lines
190 B
C
Raw Normal View History

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