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