diff options
author | delphij <delphij@FreeBSD.org> | 2009-12-13 04:14:55 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2009-12-13 04:14:55 +0000 |
commit | 9106a674a7fef36fd51aa33fec2366e7510838d6 (patch) | |
tree | d99a45cd1ec31692d0295bdcb83285200e1e3c64 | |
parent | 5973f2f3f42ddf917e2089e3abcaf19ea215cf6f (diff) | |
download | FreeBSD-src-9106a674a7fef36fd51aa33fec2366e7510838d6.zip FreeBSD-src-9106a674a7fef36fd51aa33fec2366e7510838d6.tar.gz |
Use ANSI prototype for foldit().
-rw-r--r-- | usr.bin/vis/foldit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/vis/foldit.c b/usr.bin/vis/foldit.c index 6ad82c2..3c977cb 100644 --- a/usr.bin/vis/foldit.c +++ b/usr.bin/vis/foldit.c @@ -44,9 +44,7 @@ static const char sccsid[] = "@(#)foldit.c 8.1 (Berkeley) 6/6/93"; #include "extern.h" int -foldit(chunk, col, max) - char *chunk; - int col, max; +foldit(char *chunk, int col, int max) { char *cp; |