2004-04-27 17:22:57 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
void secondone();
|
|
|
|
void pair_stuff();
|
2004-05-01 02:21:55 +04:00
|
|
|
void pair_p_stuff();
|
2004-04-27 17:22:57 +04:00
|
|
|
void vcl_stuff();
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
printf("Hello from subdirectory\n");
|
|
|
|
secondone();
|
|
|
|
pair_stuff();
|
2004-04-28 18:05:37 +04:00
|
|
|
pair_p_stuff();
|
2004-04-27 17:22:57 +04:00
|
|
|
vcl_stuff();
|
|
|
|
return 0;
|
|
|
|
}
|