aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-18 04:11:39 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-18 04:11:39 +0000
commit6d1d34a65ad8952d8115209f78d4f6fffee1e64f (patch)
treed1e5c30982d3ef735c33b3b52722aaaadd8daaaa /coreutils/tail.c
parent61aa77b60c411aaee39c3fade8c566642a260365 (diff)
downloadbusybox-w32-6d1d34a65ad8952d8115209f78d4f6fffee1e64f.tar.gz
busybox-w32-6d1d34a65ad8952d8115209f78d4f6fffee1e64f.tar.bz2
busybox-w32-6d1d34a65ad8952d8115209f78d4f6fffee1e64f.zip
Scrub up some function prototypes.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@3540 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index 90cc2a6ef..5e5fbc14f 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -51,7 +51,7 @@ static void tailbuf_append(char *buf, int len)
51 taillen += len; 51 taillen += len;
52} 52}
53 53
54static void tailbuf_trunc() 54static void tailbuf_trunc(void)
55{ 55{
56 char *s; 56 char *s;
57 s = memchr(tailbuf, '\n', taillen); 57 s = memchr(tailbuf, '\n', taillen);