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/m4/trace.c | |
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/m4/trace.c')
-rw-r--r-- | usr.bin/m4/trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |