From: Guillermo J. Rozas Date: Fri, 15 May 1992 03:26:33 +0000 (+0000) Subject: Fix bogus declaration. X-Git-Tag: 20090517-FFI~9397 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=7e41caf50b6b05a65f0ba1ce06c447a47d4bbd10;p=mit-scheme.git Fix bogus declaration. --- diff --git a/v7/src/microcode/bintopsb.c b/v7/src/microcode/bintopsb.c index ad093e818..255902d08 100644 --- a/v7/src/microcode/bintopsb.c +++ b/v7/src/microcode/bintopsb.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/bintopsb.c,v 9.50 1992/02/11 21:14:38 mhwu Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/bintopsb.c,v 9.51 1992/05/15 03:26:33 jinx Exp $ Copyright (c) 1987-1992 Massachusetts Institute of Technology @@ -84,7 +84,7 @@ Boolean DEFUN (ispunct, (c), fast char c) { - fast char *; + fast char * s; s = &punctuation[0]; while (*s != '\0') diff --git a/v8/src/microcode/bintopsb.c b/v8/src/microcode/bintopsb.c index ea726cdbf..acd03204d 100644 --- a/v8/src/microcode/bintopsb.c +++ b/v8/src/microcode/bintopsb.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/bintopsb.c,v 9.50 1992/02/11 21:14:38 mhwu Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/bintopsb.c,v 9.51 1992/05/15 03:26:33 jinx Exp $ Copyright (c) 1987-1992 Massachusetts Institute of Technology @@ -84,7 +84,7 @@ Boolean DEFUN (ispunct, (c), fast char c) { - fast char *; + fast char * s; s = &punctuation[0]; while (*s != '\0')