Annotation of embedaddon/quagga/zebra/misc_null.c, revision 1.1.1.2

1.1       misho       1: #include <zebra.h>
                      2: 
                      3: #include "prefix.h"
                      4: #include "zebra/rtadv.h"
                      5: #include "zebra/irdp.h"
                      6: #include "zebra/interface.h"
1.1.1.2 ! misho       7: #include "zebra/zebra_fpm.h"
1.1       misho       8: 
                      9: void ifstat_update_proc (void) { return; }
1.1.1.2 ! misho      10: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
1.1       misho      11: #pragma weak rtadv_config_write = ifstat_update_proc
                     12: #pragma weak irdp_config_write = ifstat_update_proc
                     13: #pragma weak ifstat_update_sysctl = ifstat_update_proc
1.1.1.2 ! misho      14: #else
        !            15: void rtadv_config_write (struct vty *vty, struct interface *ifp) { return; }
        !            16: void irdp_config_write (struct vty *vty, struct interface *ifp) { return; }
        !            17: void ifstat_update_sysctl (void) { return; }
        !            18: #endif
        !            19: 
        !            20: void
        !            21: zfpm_trigger_update (struct route_node *rn, const char *reason)
        !            22: {
        !            23:   return;
        !            24: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>