> void xtables_fini(void) > { > +#ifndef NO_SHARED_LIBS > dlreg_free(); > +#endif > } Note: I also considered just adding an empty 'void dlreg_free(void) {}' function in the NO_SHARED_LIBS case, but that doesn't seem to be the prevalent style...
> void xtables_fini(void) > { > +#ifndef NO_SHARED_LIBS > dlreg_free(); > +#endif > } Note: I also considered just adding an empty 'void dlreg_free(void) {}' function in the NO_SHARED_LIBS case, but that doesn't seem to be the prevalent style...