mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-08-13 07:37:41 +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
337 B
C
18 lines
337 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "utils.h"
|
|
#include "ip_common.h"
|
|
|
|
static void vcan_print_help(struct link_util *lu,
|
|
int argc, char **argv, FILE *f)
|
|
{
|
|
fprintf(f, "Usage: ... vcan\n");
|
|
}
|
|
|
|
struct link_util vcan_link_util = {
|
|
.id = "vcan",
|
|
.print_help = vcan_print_help,
|
|
};
|