ENH: Add extra test files
This commit is contained in:
parent
ec0626e54d
commit
38abe90f15
4
Tests/SubDir/AnotherSubdir/secondone.c
Normal file
4
Tests/SubDir/AnotherSubdir/secondone.c
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
const char* secondone()
|
||||||
|
{
|
||||||
|
return "Hello again";
|
||||||
|
}
|
10
Tests/SubDir/AnotherSubdir/testfromsubdir.c
Normal file
10
Tests/SubDir/AnotherSubdir/testfromsubdir.c
Normal 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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user