openbsd-ports/math/sc/patches/patch-lex_c
reinhard c0a0a9530c Sc is a spreadsheet calculator based on rectangular tables
like a financial spreadsheet. When invoked it presents you
with a table organized as rows and columns of cells. If
invoked without a file argument, by default the initial
table is empty.
 
Each cell can be associated with a numeric value, a label
string and/or an expression which evaluates to a numeric
value or label string, often based on other cell values
(formula).

MAINTAINER=     Peter Valchev <pvalchev@toxiclinux.org>
2001-02-04 18:44:00 +00:00

18 lines
290 B
Plaintext

$OpenBSD: patch-lex_c,v 1.1.1.1 2001/02/04 18:44:01 reinhard Exp $
--- lex.c.orig Mon May 11 18:43:36 1992
+++ lex.c Mon Jan 22 11:11:01 2001
@@ -384,11 +384,11 @@ char dont_use[] = {
ctl('z'), 0
};
-void
+int
charout(c)
int c;
{
- (void)putchar(c);
+ return putchar(c);
}
void