ENH: More special cases

This commit is contained in:
Andy Cedilnik 2004-04-28 10:05:37 -04:00
parent f248295d5d
commit 996ac24181
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include <stdio.h>
void pair_p_stuff()
{
printf("Placeholder for another strange file in subdirectory\n");
}

View File

@ -9,6 +9,7 @@ int main()
printf("Hello from subdirectory\n");
secondone();
pair_stuff();
pair_p_stuff();
vcl_stuff();
return 0;
}