From: Guillermo J. Rozas Date: Sat, 6 Feb 1993 05:43:53 +0000 (+0000) Subject: Eta convert fclose to make it work with incompatible system-dependent X-Git-Tag: 20090517-FFI~8550 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=9be3ecb3094538fc34e95b40dab2570f99d8994c;p=mit-scheme.git Eta convert fclose to make it work with incompatible system-dependent declarations. --- diff --git a/v7/src/microcode/uxsig.c b/v7/src/microcode/uxsig.c index bc6711d80..d1a568c38 100644 --- a/v7/src/microcode/uxsig.c +++ b/v7/src/microcode/uxsig.c @@ -1,8 +1,8 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxsig.c,v 1.23 1992/06/05 20:05:32 jinx Exp $ +$Id: uxsig.c,v 1.24 1993/02/06 05:43:53 gjr Exp $ -Copyright (c) 1990-92 Massachusetts Institute of Technology +Copyright (c) 1990-1993 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -1112,6 +1112,13 @@ DEFUN_VOID (examine_memory) fflush (stdout); } +void +DEFUN (eta_fclose, (stream), PTR stream) +{ + (void) (fclose ((FILE *) stream)); + return; +} + static void DEFUN_VOID (interactive_back_trace) { @@ -1139,7 +1146,7 @@ DEFUN_VOID (interactive_back_trace) return; } transaction_record_action (tat_always, - ((void EXFUN ((*), (PTR))) fclose), + eta_fclose, ((PTR) to_dump)); fprintf (stdout, "Writing the stack trace to file \"%s\" -- ", &input_string[0]);