mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-08-11 22:53:24 +00:00

For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
18 lines
342 B
C
18 lines
342 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "utils.h"
|
|
#include "ip_common.h"
|
|
|
|
static void nlmon_print_help(struct link_util *lu,
|
|
int argc, char **argv, FILE *f)
|
|
{
|
|
fprintf(f, "Usage: ... nlmon\n");
|
|
}
|
|
|
|
struct link_util nlmon_link_util = {
|
|
.id = "nlmon",
|
|
.print_help = nlmon_print_help,
|
|
};
|