From: Jim Wilson Date: Mon, 6 Sep 1993 05:03:16 +0000 (-0700) Subject: (abort): Correct volatile function declaration. X-Git-Tag: misc/cutover-egcs-0~8678 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fca13b64f6c8d6bec74fb5c90995f11396201a3e;p=thirdparty%2Fgcc.git (abort): Correct volatile function declaration. From-SVN: r5265 --- diff --git a/gcc/protoize.c b/gcc/protoize.c index 7598ba9c7df8..93b09cf2b9e2 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -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 ();