Commit fca13b64 by Jim Wilson

(abort): Correct volatile function declaration.

From-SVN: r5265
parent a2bbfba6
...@@ -133,7 +133,8 @@ typedef char * const_pointer_type; ...@@ -133,7 +133,8 @@ typedef char * const_pointer_type;
causes conflicts with system headers on some systems. */ causes conflicts with system headers on some systems. */
#ifndef abort #ifndef abort
extern VOLATILE void abort (); typedef void voidfn ();
extern VOLATILE voidfn abort;
#endif #endif
extern int kill (); extern int kill ();
extern int creat (); extern int creat ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment