diff options
-rw-r--r-- | test/main.c | 2 | ||||
-rw-r--r-- | test/testFuncs1.c | 4 | ||||
-rw-r--r-- | test/testFuncs1.h | 4 | ||||
-rw-r--r-- | test/testFuncs2.c | 1 | ||||
-rw-r--r-- | test/testFuncs2.h | 2 |
5 files changed, 12 insertions, 1 deletions
diff --git a/test/main.c b/test/main.c index dba3c11..36fa778 100644 --- a/test/main.c +++ b/test/main.c @@ -77,7 +77,7 @@ main() test29(a); test31(); - malloc(); + //malloc(); } /*********************************************************************************************************************/ /*intentionally left blank.*/ diff --git a/test/testFuncs1.c b/test/testFuncs1.c index 9af097c..79260c4 100644 --- a/test/testFuncs1.c +++ b/test/testFuncs1.c @@ -29,6 +29,8 @@ void test (void); void test2 (void);
void test11 (void);
+double badboy = 0.0;
+
/**********************************************************************************************************************/
@@ -1203,10 +1205,12 @@ void test34(void) test33();
}
+#if 0
void malloc (void)
{
}
+#endif
/**********************************************************************************************************************/
diff --git a/test/testFuncs1.h b/test/testFuncs1.h index ca9827e..901d4a6 100644 --- a/test/testFuncs1.h +++ b/test/testFuncs1.h @@ -15,6 +15,8 @@ extern union uni { char str[20];
} uni1;
+//extern int eldiablo = 0;
+
extern int cccc[];
extern cucu;
@@ -170,7 +172,9 @@ void testfunc9999(void) int ** (**pfunc6)(int**, int***);
}
+#if 0
void malloc (void);
+#endif
#endif
/***********************************************************************************************************/
diff --git a/test/testFuncs2.c b/test/testFuncs2.c index 493a85e..5bf7868 100644 --- a/test/testFuncs2.c +++ b/test/testFuncs2.c @@ -84,6 +84,7 @@ int incompletearr2[]; int dudu; int bubu; int fufu; +double badboy = 0.0; int incompletearr1[10]; diff --git a/test/testFuncs2.h b/test/testFuncs2.h index bf848aa..647613a 100644 --- a/test/testFuncs2.h +++ b/test/testFuncs2.h @@ -8,6 +8,8 @@ /*Globals*/ extern int aaaa[]; +extern int eldiablo = 0; + extern int bbbb[] = {1, 2, 3, 4, 5, 6}; int c[2][3] = {1, 2, 3, 4, 5, 6}; |