diff options
author | paul <paul> | 2005-10-25 23:31:05 +0000 |
---|---|---|
committer | paul <paul> | 2005-10-25 23:31:05 +0000 |
commit | 44790b311e63a32d118c32632c0cfc164e10470c (patch) | |
tree | 0615a259db549dcc3674b3291c3ae504f34c2144 /ripd/rip_debug.c | |
parent | 02e3d2bee04de34d5f0818ce8959b1b830e0c43a (diff) | |
download | quagga-44790b311e63a32d118c32632c0cfc164e10470c.tar.bz2 quagga-44790b311e63a32d118c32632c0cfc164e10470c.tar.xz |
2005-10-26 Paul Jakma <paul.jakma@sun.com>
* (general) static/extern functions and definitions.
* rip_interface.h: new file, export the public functions from
rip_interface.c
Diffstat (limited to 'ripd/rip_debug.c')
-rw-r--r-- | ripd/rip_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ripd/rip_debug.c b/ripd/rip_debug.c index fd735d0f..d788ea7e 100644 --- a/ripd/rip_debug.c +++ b/ripd/rip_debug.c @@ -210,7 +210,7 @@ struct cmd_node debug_node = 1 }; -int +static int config_write_debug (struct vty *vty) { int write = 0; @@ -251,7 +251,7 @@ config_write_debug (struct vty *vty) } void -rip_debug_reset () +rip_debug_reset (void) { rip_debug_event = 0; rip_debug_packet = 0; @@ -259,7 +259,7 @@ rip_debug_reset () } void -rip_debug_init () +rip_debug_init (void) { rip_debug_event = 0; rip_debug_packet = 0; |