summaryrefslogtreecommitdiff
path: root/zhm/queue.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1988-06-27 06:55:11 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1988-06-27 06:55:11 +0000
commitc6af263292660104d13e65fc0c13ff335992b3e4 (patch)
treed64513a680fb39ad6f4a2dd0661929be554b5f78 /zhm/queue.c
parenta5b8232887ab61340e5a838bebf40f06db94d129 (diff)
declare init_queue() and retransmit_queue() as void
Diffstat (limited to 'zhm/queue.c')
-rw-r--r--zhm/queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zhm/queue.c b/zhm/queue.c
index c7f3175..0837aa8 100644
--- a/zhm/queue.c
+++ b/zhm/queue.c
@@ -40,7 +40,7 @@ Qelem hm_queue = { &hm_queue, &hm_queue, NULL }, *is_in_queue();
extern long time();
extern int timeout_type;
-Code_t init_queue()
+void init_queue()
{
while (hm_queue.q_forw != &hm_queue) {
free(hm_queue.q_forw->q_data->z_packet);
@@ -117,7 +117,7 @@ struct sockaddr_in *repl;
}
}
-Code_t retransmit_queue(sin)
+void retransmit_queue(sin)
struct sockaddr_in *sin;
{
Qelem *srch;