]> gcc.gnu.org Git - gcc.git/commitdiff
(abort): Correct volatile function declaration.
authorJim Wilson <wilson@gcc.gnu.org>
Mon, 6 Sep 1993 05:03:16 +0000 (22:03 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Mon, 6 Sep 1993 05:03:16 +0000 (22:03 -0700)
From-SVN: r5265

gcc/protoize.c

index 7598ba9c7df8c147b5b191f8029a671069a70430..93b09cf2b9e21cf077e98e0f6e1562af820892e5 100644 (file)
@@ -133,7 +133,8 @@ typedef char * const_pointer_type;
    causes conflicts with system headers on some systems.  */
 
 #ifndef abort
-extern VOLATILE void abort ();
+typedef void voidfn ();
+extern VOLATILE voidfn abort;
 #endif
 extern int kill ();
 extern int creat ();
This page took 0.062202 seconds and 5 git commands to generate.