aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-09-05 22:03:16 -0700
committerJim Wilson <wilson@gcc.gnu.org>1993-09-05 22:03:16 -0700
commitfca13b64f6c8d6bec74fb5c90995f11396201a3e (patch)
tree0243f0448c1217504f012be5c85e7f7f0d00a9fb
parenta2bbfba6c466e40277b2ace1bda45ab6bd80690a (diff)
downloadgcc-fca13b64f6c8d6bec74fb5c90995f11396201a3e.zip
gcc-fca13b64f6c8d6bec74fb5c90995f11396201a3e.tar.gz
gcc-fca13b64f6c8d6bec74fb5c90995f11396201a3e.tar.bz2
(abort): Correct volatile function declaration.
From-SVN: r5265
-rw-r--r--gcc/protoize.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c
index 7598ba9..93b09cf 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 ();