summaryrefslogtreecommitdiff
path: root/common/dispatch.c
diff options
context:
space:
mode:
authorTomek Mrugalski <tomek@isc.org>2011-05-11 14:01:25 +0000
committerTomek Mrugalski <tomek@isc.org>2011-05-11 14:01:25 +0000
commita34feb7d81efdd9a140084d070ce4633572467fb (patch)
tree791736265825e3b9a7927341a7640d3dd51015e8 /common/dispatch.c
parentfb30f3fc8bb324c6be1a418c341d062d7e1603df (diff)
downloadisc-dhcp-a34feb7d81efdd9a140084d070ce4633572467fb.tar.gz
- Code cleanup: remove obsolete PROTO, KandR, INLINE and ANSI_DECL macros
[ISC-Bugs #13151]
Diffstat (limited to 'common/dispatch.c')
-rw-r--r--common/dispatch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/dispatch.c b/common/dispatch.c
index efb0dba3..7c4434e7 100644
--- a/common/dispatch.c
+++ b/common/dispatch.c
@@ -3,7 +3,7 @@
Network input dispatcher... */
/*
- * Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2011 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
@@ -178,7 +178,7 @@ isclib_timer_callback(isc_task_t *taskp,
void add_timeout (when, where, what, ref, unref)
struct timeval *when;
- void (*where) PROTO ((void *));
+ void (*where) (void *);
void *what;
tvref_t ref;
tvunref_t unref;
@@ -352,7 +352,7 @@ void add_timeout (when, where, what, ref, unref)
}
void cancel_timeout (where, what)
- void (*where) PROTO ((void *));
+ void (*where) (void *);
void *what;
{
struct timeout *t, *q;