]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/iplink_nlmon.c
tc: break long lines
[mirror_iproute2.git] / ip / iplink_nlmon.c
CommitLineData
9fd7b86c
PS
1#include <stdio.h>
2#include <stdlib.h>
3
4#include "utils.h"
5#include "ip_common.h"
6
7static void nlmon_print_help(struct link_util *lu,
8 int argc, char **argv, FILE *f)
9{
10 fprintf(f, "Usage: ... nlmon\n");
11}
12
13struct link_util nlmon_link_util = {
14 .id = "nlmon",
15 .print_help = nlmon_print_help,
16};