diff options
author | wiz <wiz> | 2000-01-12 20:30:33 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-01-12 20:30:33 +0000 |
commit | 1483f8318092ec45c9b90a7cb8f30a7ee098276a (patch) | |
tree | f5ca295fe83ccbc45967077d731fb1fac3c395de /math/sc | |
parent | 2b2a153760675c1dac5ccbb0d50a93710dc5b72c (diff) | |
download | pkgsrc-1483f8318092ec45c9b90a7cb8f30a7ee098276a.tar.gz |
Moved from misc/sc/patches/patch-ab,v
Diffstat (limited to 'math/sc')
-rw-r--r-- | math/sc/patches/patch-ab | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/math/sc/patches/patch-ab b/math/sc/patches/patch-ab new file mode 100644 index 00000000000..f63ef2ebab1 --- /dev/null +++ b/math/sc/patches/patch-ab @@ -0,0 +1,18 @@ +$NetBSD: patch-ab,v 1.2 2000/01/12 20:30:34 wiz Exp $ + +--- lex.c.orig Mon May 11 20:43:36 1992 ++++ lex.c Thu Jul 30 20:26:51 1998 +@@ -384,11 +384,11 @@ + ctl('z'), 0 + }; + +-void ++int + charout(c) + int c; + { +- (void)putchar(c); ++ return putchar(c); + } + + void |