diff options
author | Xin LI <delphij@FreeBSD.org> | 2008-04-28 21:08:42 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2008-04-28 21:08:42 +0000 |
commit | b6d9e1f355f23547e4ec15bd3ffe9e97854a4f69 (patch) | |
tree | 97dad06a487d87e06e7131be3665c891231215b7 /usr.bin/talk/msgs.c | |
parent | f81a2a495643009e00e2f95b958dfc80869beec4 (diff) | |
download | src-test2-b6d9e1f355f23547e4ec15bd3ffe9e97854a4f69.tar.gz src-test2-b6d9e1f355f23547e4ec15bd3ffe9e97854a4f69.zip |
Notes
Diffstat (limited to 'usr.bin/talk/msgs.c')
-rw-r--r-- | usr.bin/talk/msgs.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/talk/msgs.c b/usr.bin/talk/msgs.c index e4a097739671..f4cd41391dbd 100644 --- a/usr.bin/talk/msgs.c +++ b/usr.bin/talk/msgs.c @@ -55,14 +55,13 @@ int current_line = 0; /* ARGSUSED */ void -disp_msg(signo) - int signo __unused; +disp_msg(int signo __unused) { message(current_state); } void -start_msgs() +start_msgs(void) { struct itimerval itimer; @@ -74,7 +73,7 @@ start_msgs() } void -end_msgs() +end_msgs(void) { struct itimerval itimer; |