diff options
Diffstat (limited to 'zebra/zebra_fpm_private.h')
| -rw-r--r-- | zebra/zebra_fpm_private.h | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/zebra/zebra_fpm_private.h b/zebra/zebra_fpm_private.h index 441a22a798..969ab6cfee 100644 --- a/zebra/zebra_fpm_private.h +++ b/zebra/zebra_fpm_private.h @@ -28,33 +28,37 @@ #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L -#define zfpm_debug(...) \ - do { \ - if (IS_ZEBRA_DEBUG_FPM) zlog_debug("FPM: " __VA_ARGS__); \ - } while(0) +#define zfpm_debug(...) \ + do { \ + if (IS_ZEBRA_DEBUG_FPM) \ + zlog_debug("FPM: " __VA_ARGS__); \ + } while (0) #elif defined __GNUC__ -#define zfpm_debug(_args...) \ - do { \ - if (IS_ZEBRA_DEBUG_FPM) zlog_debug("FPM: " _args); \ - } while(0) +#define zfpm_debug(_args...) \ + do { \ + if (IS_ZEBRA_DEBUG_FPM) \ + zlog_debug("FPM: " _args); \ + } while (0) #else -static inline void zfpm_debug(const char *format, ...) { return; } +static inline void zfpm_debug(const char *format, ...) +{ + return; +} #endif /* * Externs */ -extern int -zfpm_netlink_encode_route (int cmd, rib_dest_t *dest, struct route_entry *re, - char *in_buf, size_t in_buf_len); +extern int zfpm_netlink_encode_route(int cmd, rib_dest_t *dest, + struct route_entry *re, char *in_buf, + size_t in_buf_len); -extern int -zfpm_protobuf_encode_route (rib_dest_t *dest, struct route_entry *re, - uint8_t *in_buf, size_t in_buf_len); +extern int zfpm_protobuf_encode_route(rib_dest_t *dest, struct route_entry *re, + uint8_t *in_buf, size_t in_buf_len); -extern struct route_entry *zfpm_route_for_update (rib_dest_t *dest); +extern struct route_entry *zfpm_route_for_update(rib_dest_t *dest); #endif /* _ZEBRA_FPM_PRIVATE_H */ |
