Convert K&R function definitions to modern C.
authorjan <jan@openbsd.org>
Mon, 31 May 2021 16:18:01 +0000 (16:18 +0000)
committerjan <jan@openbsd.org>
Mon, 31 May 2021 16:18:01 +0000 (16:18 +0000)
OK naddy@, millert@

libexec/ftpd/ftpcmd.y
libexec/ftpd/monitor.c

index 463513c..cc2b6e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ftpcmd.y,v 1.72 2021/05/23 17:01:21 jan Exp $ */
+/*     $OpenBSD: ftpcmd.y,v 1.73 2021/05/31 16:18:01 jan Exp $ */
 /*     $NetBSD: ftpcmd.y,v 1.7 1996/04/08 19:03:11 jtc Exp $   */
 
 /*
@@ -1072,9 +1072,7 @@ static int         yylex(void);
 extern int epsvall;
 
 static struct tab *
-lookup(p, cmd)
-       struct tab *p;
-       const char *cmd;
+lookup(struct tab *p, const char *cmd)
 {
 
        for (; p->name != NULL; p++)
@@ -1089,9 +1087,7 @@ lookup(p, cmd)
  * get_line - a hacked up version of fgets to ignore TELNET escape codes.
  */
 int
-get_line(s, n)
-       char *s;
-       int n;
+get_line(char *s, int n)
 {
        int c;
        char *cs;
@@ -1176,8 +1172,7 @@ get_line(s, n)
 
 /*ARGSUSED*/
 void
-toolong(signo)
-       int signo;
+toolong(int signo)
 {
        struct syslog_data sdata = SYSLOG_DATA_INIT;
 
@@ -1190,7 +1185,7 @@ toolong(signo)
 }
 
 static int
-yylex()
+yylex(void)
 {
        static int cpos;
        char *cp, *cp2;
@@ -1429,8 +1424,7 @@ yylex()
 }
 
 void
-upper(s)
-       char *s;
+upper(char *s)
 {
        char *p;
 
@@ -1439,9 +1433,7 @@ upper(s)
 }
 
 static void
-help(ctab, s)
-       struct tab *ctab;
-       char *s;
+help(struct tab *ctab, char *s)
 {
        struct tab *c;
        int width, NCMDS;
@@ -1504,8 +1496,7 @@ help(ctab, s)
 }
 
 static void
-sizecmd(filename)
-       const char *filename;
+sizecmd(const char *filename)
 {
        switch (type) {
        case TYPE_L:
index ecd4afb..33be374 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: monitor.c,v 1.28 2021/05/20 15:21:03 jan Exp $        */
+/*     $OpenBSD: monitor.c,v 1.29 2021/05/31 16:18:01 jan Exp $        */
 
 /*
  * Copyright (c) 2004 Moritz Jodeit <moritz@openbsd.org>
@@ -206,7 +206,7 @@ monitor_init(void)
  * for the user-privileged slave process and 1 for the monitor process.
  */
 int
-monitor_post_auth()
+monitor_post_auth(void)
 {
        slave_pid = fork();
        if (slave_pid == -1)