ENH: Add extra test files

This commit is contained in:
Andy Cedilnik 2004-04-26 18:49:31 -04:00
parent ec0626e54d
commit 38abe90f15
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,4 @@
const char* secondone()
{
return "Hello again";
}

View File

@ -0,0 +1,10 @@
#include <stdio.h>
const char* secondone();
int main()
{
printf("Hello from subdirectory\n");
printf("SO: %s\n", secondone());
return 0;
}