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