diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-07-14 02:03:23 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-07-14 02:03:23 +0000 |
commit | 868a694e347d13a4500a3272a1414e82d5284687 (patch) | |
tree | 3ed9536a6a94ca57addde951557b8067c02db7bf /usr.bin | |
parent | 1c19cb9624004f81e18e1fe4c78ba284d594e4ab (diff) | |
download | FreeBSD-src-868a694e347d13a4500a3272a1414e82d5284687.zip FreeBSD-src-868a694e347d13a4500a3272a1414e82d5284687.tar.gz |
Functions declared as <type> <identifier>(<nil>) should be declared as
<type> <identifier>(<void-type>) in ANSI C.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/m4/expr.c | 30 | ||||
-rw-r--r-- | usr.bin/m4/gnum4.c | 4 | ||||
-rw-r--r-- | usr.bin/m4/main.c | 6 | ||||
-rw-r--r-- | usr.bin/m4/misc.c | 12 | ||||
-rw-r--r-- | usr.bin/m4/trace.c | 2 |
5 files changed, 27 insertions, 27 deletions
diff --git a/usr.bin/m4/expr.c b/usr.bin/m4/expr.c index de5e860..98f0a3b 100644 --- a/usr.bin/m4/expr.c +++ b/usr.bin/m4/expr.c @@ -168,7 +168,7 @@ expr(const char *expbuf) * query : lor | lor '?' query ':' query */ static int -query() +query(void) { int result, true_val, false_val; @@ -190,7 +190,7 @@ query() * lor : land { '||' land } */ static int -lor() +lor(void) { int c, vl, vr; @@ -210,7 +210,7 @@ lor() * land : not { '&&' not } */ static int -land() +land(void) { int c, vl, vr; @@ -230,7 +230,7 @@ land() * not : eqrel | '!' not */ static int -not() +not(void) { int val, c; @@ -250,7 +250,7 @@ not() * eqrel : shift { eqrelop shift } */ static int -eqrel() +eqrel(void) { int vl, vr, op; @@ -288,7 +288,7 @@ eqrel() * shift : primary { shop primary } */ static int -shift() +shift(void) { int vl, vr, c; @@ -312,7 +312,7 @@ shift() * primary : term { addop term } */ static int -primary() +primary(void) { int c, vl, vr; @@ -334,7 +334,7 @@ primary() * <term> := <exp> { <mulop> <exp> } */ static int -term() +term(void) { int c, vl, vr; @@ -368,7 +368,7 @@ term() * <term> := <unary> { <expop> <unary> } */ static int -exp() +exp(void) { int c, vl, vr, n; @@ -397,7 +397,7 @@ exp() * unary : factor | unop unary */ static int -unary() +unary(void) { int val, c; @@ -422,7 +422,7 @@ unary() * factor : constant | '(' query ')' */ static int -factor() +factor(void) { int val; @@ -442,7 +442,7 @@ factor() * Note: constant() handles multi-byte constants */ static int -constant() +constant(void) { int i; int value; @@ -503,7 +503,7 @@ constant() * num : digit | num digit */ static int -num() +num(void) { int rval, c, base; int ndig; @@ -561,7 +561,7 @@ bad_digit: * eqrel : '=' | '==' | '!=' | '<' | '>' | '<=' | '>=' */ static int -geteqrel() +geteqrel(void) { int c1, c2; @@ -605,7 +605,7 @@ geteqrel() * Skip over any white space and return terminating char. */ static int -skipws() +skipws(void) { int c; diff --git a/usr.bin/m4/gnum4.c b/usr.bin/m4/gnum4.c index 9d81266..813b8af 100644 --- a/usr.bin/m4/gnum4.c +++ b/usr.bin/m4/gnum4.c @@ -100,7 +100,7 @@ addtoincludepath(const char *dirname) } static void -ensure_m4path() +ensure_m4path(void) { static int envpathdone = 0; char *envpath; @@ -236,7 +236,7 @@ addchar(int c) } static char * -getstring() +getstring(void) { addchar('\0'); current = 0; diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c index 3ebbaa3..d25a79b 100644 --- a/usr.bin/m4/main.c +++ b/usr.bin/m4/main.c @@ -324,7 +324,7 @@ do_look_ahead(int t, const char *token) * macro - the work horse.. */ static void -macro() +macro(void) { char token[MAXTOK+1]; int t, l; @@ -566,7 +566,7 @@ inspect(int c, char *tp) * within keywrds block. */ static void -initkwds() +initkwds(void) { size_t i; unsigned int h; @@ -635,7 +635,7 @@ dump_stack(struct position *t, int lev) static void -enlarge_stack() +enlarge_stack(void) { STACKMAX *= 2; mstack = realloc(mstack, sizeof(stae) * STACKMAX); diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c index dd4941a..0eba9aa 100644 --- a/usr.bin/m4/misc.c +++ b/usr.bin/m4/misc.c @@ -152,7 +152,7 @@ pbunsigned(unsigned long n) } void -initspaces() +initspaces(void) { int i; @@ -168,7 +168,7 @@ initspaces() } void -enlarge_strspace() +enlarge_strspace(void) { char *newstrspace; int i; @@ -189,7 +189,7 @@ enlarge_strspace() } void -enlarge_bufspace() +enlarge_bufspace(void) { char *newbuf; int i; @@ -246,7 +246,7 @@ onintr(int signo __unused) * killdiv - get rid of the diversion files */ void -killdiv() +killdiv(void) { int n; @@ -291,7 +291,7 @@ xstrdup(const char *s) } void -usage() +usage(void) { fprintf(stderr, "usage: m4 [-d flags] [-t name] [-gs] [-D name[=value]]...\n" @@ -351,7 +351,7 @@ doprintfilename(struct input_file *f) * and later dump everything that was added since then to a file. */ size_t -buffer_mark() +buffer_mark(void) { return bp - buf; } diff --git a/usr.bin/m4/trace.c b/usr.bin/m4/trace.c index a9f66d2..610ad3c 100644 --- a/usr.bin/m4/trace.c +++ b/usr.bin/m4/trace.c @@ -188,7 +188,7 @@ set_trace_flags(const char *s) } static int -frame_level() +frame_level(void) { int level; int framep; |