Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
Dependency
/
Exec4
/
ExecMain.c
blob: 48552d3b4a1eecdde81658641502fe11abb26bc2 [
file
]
#include
<stdio.h>
void
FiveFunction
();
void
TwoFunction
();
int
main
(
void
)
{
FiveFunction
();
TwoFunction
();
printf
(
"Dependency test executable ran successfully.\n"
);
return
0
;
}