diff options
Diffstat (limited to 'test/testFuncs1.h')
-rw-r--r-- | test/testFuncs1.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/testFuncs1.h b/test/testFuncs1.h index 262a565..15d62be 100644 --- a/test/testFuncs1.h +++ b/test/testFuncs1.h @@ -16,6 +16,9 @@ extern union uni { } uni1;
extern cucu;
+int yetanotherheadervar;
+
+double yetanotherdoubleinsideaheader;
/***********************************************************************************************************/
/*choose the compiler*/
#define COMPILER GCC
@@ -130,6 +133,14 @@ void test28(void); int test29(int a);
int test31(void);
+void headerfund(void)
+{
+ int a;
+ int b;
+ int sum;
+ sum = a + b;
+}
+
void malloc (void);
#endif
/***********************************************************************************************************/
|