aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/lam/lam.c
diff options
context:
space:
mode:
authorMike Heffner <mikeh@FreeBSD.org>2001-02-08 20:15:59 +0000
committerMike Heffner <mikeh@FreeBSD.org>2001-02-08 20:15:59 +0000
commit8ecfa0142f7a3b0e895d1d84090f2fdb5c6f0196 (patch)
treea0b37e4bdf52dab56d181e9e2e8fc5be4aa11f09 /usr.bin/lam/lam.c
parentcb24f323d0f5b9f98299e1091eceb7058c8058a7 (diff)
downloadsrc-8ecfa0142f7a3b0e895d1d84090f2fdb5c6f0196.tar.gz
src-8ecfa0142f7a3b0e895d1d84090f2fdb5c6f0196.zip
Fix style(9) bugs from previous commit: remove space after function
names and revert to char *[]. bde by: bde, imp
Notes
Notes: svn path=/head/; revision=72178
Diffstat (limited to 'usr.bin/lam/lam.c')
-rw-r--r--usr.bin/lam/lam.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/lam/lam.c b/usr.bin/lam/lam.c
index d98c61782f42..2c3759b4d748 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;