From: Guillermo J. Rozas Date: Wed, 27 Oct 1993 22:14:36 +0000 (+0000) Subject: SunOS 4.1.? declares abort to return void. X-Git-Tag: 20090517-FFI~7670 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=a29144d931e05c06480cad15de94abf16605074c;p=mit-scheme.git SunOS 4.1.? declares abort to return void. --- diff --git a/v7/src/microcode/dstack.h b/v7/src/microcode/dstack.h index 6d3752fea..1a0bb251b 100644 --- a/v7/src/microcode/dstack.h +++ b/v7/src/microcode/dstack.h @@ -14,7 +14,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: dstack.h,v 1.6 1993/06/24 07:08:21 gjr Exp $ */ +/* $Id: dstack.h,v 1.7 1993/10/27 22:14:36 gjr Exp $ */ #ifndef __DSTACK_H__ #define __DSTACK_H__ @@ -23,7 +23,9 @@ #include extern void +#ifndef _SUNOS4 EXFUN (abort, (void)), +#endif EXFUN (exit, (int)), EXFUN (free, (void *));