mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-09 17:25:12 +00:00

The code was using pragma's to override function calls while there was code for platforms that don't support pragma's Just remove the pragma usage from the program in it's entirety Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com> Reviewed-by: Don Slice <dslice@cumulusnetworks.com> Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
17 lines
385 B
C
17 lines
385 B
C
#include <zebra.h>
|
|
|
|
#include "prefix.h"
|
|
#include "zebra/rtadv.h"
|
|
#include "zebra/irdp.h"
|
|
#include "zebra/interface.h"
|
|
#include "zebra/zebra_fpm.h"
|
|
|
|
void rtadv_config_write (struct vty *vty, struct interface *ifp) { return; }
|
|
void irdp_config_write (struct vty *vty, struct interface *ifp) { return; }
|
|
|
|
void
|
|
zfpm_trigger_update (struct route_node *rn, const char *reason)
|
|
{
|
|
return;
|
|
}
|