mirror of
https://github.com/reactos/CMake.git
synced 2025-05-13 10:05:50 +00:00
15 lines
188 B
C
15 lines
188 B
C
#include <stdio.h>
|
|
|
|
void secondone();
|
|
void pair_stuff();
|
|
void vcl_stuff();
|
|
|
|
int main()
|
|
{
|
|
printf("Hello from subdirectory\n");
|
|
secondone();
|
|
pair_stuff();
|
|
vcl_stuff();
|
|
return 0;
|
|
}
|