Systemd/src/network/netdev/netdevsim.h

20 lines
325 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
This file is part of systemd.
Copyright 2018 Susant Sahani
***/
typedef struct NetDevSim NetDevSim;
#include "netdev/netdev.h"
struct NetDevSim {
NetDev meta;
};
DEFINE_NETDEV_CAST(NETDEVSIM, NetDevSim);
extern const NetDevVTable netdevsim_vtable;