diff options
Diffstat (limited to 'include/net.h')
-rw-r--r-- | include/net.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/net.h b/include/net.h new file mode 100644 index 00000000000..afa46f239ee --- /dev/null +++ b/include/net.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef __NET_H__ +#define __NET_H__ + +#include <net-common.h> + +#if defined(CONFIG_NET_LWIP) +#include <net-lwip.h> +#else +#include <net-legacy.h> +#endif + +#endif /* __NET_H__ */ |