]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* gcc.dg/20050922-1.c: Remove stdlib.h and declare abort().
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 21 Oct 2013 16:50:09 +0000 (16:50 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 21 Oct 2013 16:50:09 +0000 (16:50 +0000)
        * gcc.dg/20050922-1.c: Remove stdlib.h and declare abort() and
        exit().

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@203901 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20050922-1.c
gcc/testsuite/gcc.dg/20050922-2.c

index 0293a771ab055ad38e77b10d583e8a1f99b3514e..b9926c8f3f3222a6d700f9104f30ae9912b07659 100644 (file)
@@ -1,3 +1,9 @@
+2013-10-21  Vidya Praveen  <vidyapraveen@arm.com>
+
+       * gcc.dg/20050922-1.c: Remove stdlib.h and declare abort().
+       * gcc.dg/20050922-1.c: Remove stdlib.h and declare abort() and
+       exit().
+
 2013-10-21  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/58794
index ed5a3c63e9d2dbfb84d8abe0f9f285b8eb1febdd..982f82011ba5f3f441539f5db53e74a6a8302d63 100644 (file)
@@ -4,7 +4,7 @@
 /* { dg-do run } */
 /* { dg-options "-O1 -std=c99" } */
 
-#include <stdlib.h>
+extern void abort (void);
 
 #if __INT_MAX__ == 2147483647
 typedef unsigned int uint32_t;
index c2974d03d9c8b4a0575f735cedc77105ede370f6..2e8db829e297746c5917b7e8d9fcf6e28c598fab 100644 (file)
@@ -4,7 +4,8 @@
 /* { dg-do run } */
 /* { dg-options "-O1 -std=c99" } */
 
-#include <stdlib.h>
+extern void abort (void);
+extern void exit (int);
 
 #if __INT_MAX__ == 2147483647
 typedef unsigned int uint32_t;