diff options
author | Paul Jakma <paul@quagga.net> | 2011-04-08 12:44:43 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-01-06 16:18:18 +0000 |
commit | f63f06da2e7be6b17c72dd6110aae179f42f3700 (patch) | |
tree | a36b625a9ea06d0720a240276ed1b8af33193ed7 /zebra/interface.c | |
parent | 651e70d7f419ee7af75113f80e688c0100e9cff5 (diff) |
general: remove inline qualifiers and move in-header functions to objects
* (general) Move functions in headers into files, to be compiled into
shared object files. Remove inline qualifier from functions. Let the
compiler do the work.
Diffstat (limited to 'zebra/interface.c')
-rw-r--r-- | zebra/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index 03e7ff71..933d6425 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -216,7 +216,7 @@ if_subnet_delete (struct interface *ifp, struct connected *ifc) * interface will affect only the primary interface/address on Solaris. ************************End Solaris flags hacks *********************** */ -static inline void +static void if_flags_mangle (struct interface *ifp, uint64_t *newflags) { #ifdef SUNOS_5 |