mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-26 04:09:35 +03:00
17 lines
227 B
C
17 lines
227 B
C
#include <stdio.h>
|
|
|
|
void secondone();
|
|
void pair_stuff();
|
|
void pair_p_stuff();
|
|
void vcl_stuff();
|
|
|
|
int main()
|
|
{
|
|
printf("Hello from subdirectory\n");
|
|
secondone();
|
|
pair_stuff();
|
|
pair_p_stuff();
|
|
vcl_stuff();
|
|
return 0;
|
|
}
|