]> git.proxmox.com Git - mirror_iproute2.git/blob - tc/static-syms.c
tc: fix compilation with old gcc (< 4.6) (bis)
[mirror_iproute2.git] / tc / static-syms.c
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
7 #include <string.h>
8 #include "dlfcn.h"
9
10 void *_dlsym(const char *sym)
11 {
12 #include "static-syms.h"
13 return NULL;
14 }