ENH: Add extra test files
This commit is contained in:
parent
ec0626e54d
commit
38abe90f15
|
@ -0,0 +1,4 @@
|
|||
const char* secondone()
|
||||
{
|
||||
return "Hello again";
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#include <stdio.h>
|
||||
|
||||
const char* secondone();
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("Hello from subdirectory\n");
|
||||
printf("SO: %s\n", secondone());
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue