diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-20 21:54:22 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-20 21:54:22 +0000 |
commit | 11f47b98a19ac74c0b38c1d8d795f6bd4e185bf5 (patch) | |
tree | 156d9c7144c0fd77e20331b65e9413aeafd97adf /test/testFuncs1.h | |
parent | added 6.4 and 6.5 (diff) | |
download | mutator-11f47b98a19ac74c0b38c1d8d795f6bd4e185bf5.tar.gz mutator-11f47b98a19ac74c0b38c1d8d795f6bd4e185bf5.zip |
updated the tests
Diffstat (limited to '')
-rw-r--r-- | test/testFuncs1.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/test/testFuncs1.h b/test/testFuncs1.h index 8276c18..c047cc2 100644 --- a/test/testFuncs1.h +++ b/test/testFuncs1.h @@ -5,7 +5,12 @@ #define FALSE 0
#define TRUE 1
-
+/***********************************************Global******************************************************/
+extern union uni {
+ int a;
+ double b;
+ char str[20];
+} uni1;
/***********************************************************************************************************/
/*choose the compiler*/
@@ -107,6 +112,11 @@ void babeFunk (int entry); test3();
double test4 (int aa, int bb, double cc);
void test5(void);
+void test6(void);
+void test7(void);
+void test8(void);
+void test9(void);
+void test10(void);
/***********************************************************************************************************/
/*ive been intentionally left blank. dont touch me.*/
|