diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-09-05 22:03:16 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-09-05 22:03:16 -0700 |
commit | fca13b64f6c8d6bec74fb5c90995f11396201a3e (patch) | |
tree | 0243f0448c1217504f012be5c85e7f7f0d00a9fb /gcc | |
parent | a2bbfba6c466e40277b2ace1bda45ab6bd80690a (diff) | |
download | gcc-fca13b64f6c8d6bec74fb5c90995f11396201a3e.zip gcc-fca13b64f6c8d6bec74fb5c90995f11396201a3e.tar.gz gcc-fca13b64f6c8d6bec74fb5c90995f11396201a3e.tar.bz2 |
(abort): Correct volatile function declaration.
From-SVN: r5265
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/protoize.c | 3 |
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 (); |