15 lines
190 B
C
15 lines
190 B
C
#include <stdio.h>
|
|
|
|
void FiveFunction();
|
|
void EightFunction();
|
|
|
|
int main()
|
|
{
|
|
FiveFunction();
|
|
EightFunction();
|
|
|
|
printf("Dependency test executable ran successfully.\n");
|
|
|
|
return 0;
|
|
}
|