diff options
author | mikeh <mikeh@FreeBSD.org> | 2001-02-08 20:15:59 +0000 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2001-02-08 20:15:59 +0000 |
commit | 4ec3558a81aeeb7159323cb34e0c0198478256e2 (patch) | |
tree | a347d977cc8040e414427a75eb71307582df911e /usr.bin | |
parent | 9facde1151af1476f05893f4d1592a4b32e99e2a (diff) | |
download | FreeBSD-src-4ec3558a81aeeb7159323cb34e0c0198478256e2.zip FreeBSD-src-4ec3558a81aeeb7159323cb34e0c0198478256e2.tar.gz |
Fix style(9) bugs from previous commit: remove space after function
names and revert to char *[].
bde by: bde, imp
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/lam/lam.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/lam/lam.c b/usr.bin/lam/lam.c index d98c617..2c3759b 100644 --- a/usr.bin/lam/lam.c +++ b/usr.bin/lam/lam.c @@ -73,13 +73,13 @@ int nofinalnl; /* normally append \n to each output line */ char line[BIGBUFSIZ]; char *linep; -char *gatherline (struct openfile *); -void getargs (char **); -char *pad (struct openfile *); -static void usage (void); +char *gatherline(struct openfile *); +void getargs(char *[]); +char *pad(struct openfile *); +static void usage(void); int -main(int argc, char **argv) +main(int argc, char *argv[]) { struct openfile *ip; @@ -100,7 +100,7 @@ main(int argc, char **argv) } void -getargs(char **av) +getargs(char *av[]) { struct openfile *ip = input; char *p, *c; |