]> git.proxmox.com Git - mirror_iproute2.git/blame - genl/static-syms.c
Replace malloc && memset by calloc
[mirror_iproute2.git] / genl / static-syms.c
CommitLineData
e7b24b67
SH
1/*
2 * This file creates a dummy version of dynamic loading
3 * for environments where dynamic linking
4 * is not used or available.
5 */
6
f2e27cfb 7#include <string.h>
e7b24b67
SH
8#include "dlfcn.h"
9
f2e27cfb
MF
10void *_dlsym(const char *sym)
11{
12#include "static-syms.h"
13 return NULL;
14}