mirror of
https://github.com/reactos/CMake.git
synced 2024-11-29 06:20:23 +00: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;
|
|
}
|