diff options
Diffstat (limited to 'test/testFuncs2.h')
-rw-r--r-- | test/testFuncs2.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/testFuncs2.h b/test/testFuncs2.h index 8f01004..55daba8 100644 --- a/test/testFuncs2.h +++ b/test/testFuncs2.h @@ -13,6 +13,9 @@ extern int bbbb[] = {1, 2, 3, 4, 5, 6}; int c[2][3] = {1, 2, 3, 4, 5, 6}; int d[2][3] = {{1, 2, 3}, {4, 5, 6}}; + +int headervar; +double headervardouble; /*********************************************************************************************************************/ /*funciton types go here.*/ static void test33(void); @@ -32,6 +35,11 @@ testFunc5( void) /**that kind*/ } +void anotherheaderfunc (void) +{ + /*i dont do jack.*/ +} + void testFunc9(void); /*********************************************************************************************************************/ |