]> git.proxmox.com Git - mirror_iproute2.git/blame - genl/static-syms.c
devlink: Add devlink-health man page
[mirror_iproute2.git] / genl / static-syms.c
CommitLineData
6054c1eb 1/* SPDX-License-Identifier: GPL-2.0 */
e7b24b67
SH
2/*
3 * This file creates a dummy version of dynamic loading
4 * for environments where dynamic linking
5 * is not used or available.
6 */
7
f2e27cfb 8#include <string.h>
e7b24b67
SH
9#include "dlfcn.h"
10
f2e27cfb
MF
11void *_dlsym(const char *sym)
12{
13#include "static-syms.h"
14 return NULL;
15}