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