Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
SubDir
/
ThirdSubDir
/
testfromauxsubdir.c
blob: 448ef526407bf35aa768e3a1b3c7c5631ea24071 [
file
]
#include
<stdio.h>
void
secondone
();
void
pair_stuff
();
void
pair_p_stuff
();
void
vcl_stuff
();
int
main
(
void
)
{
printf
(
"Hello from subdirectory\n"
);
secondone
();
pair_stuff
();
pair_p_stuff
();
vcl_stuff
();
return
0
;
}