/
githubmirror
/
iproute2
Обзор
Документация
Войти
/
githubmirror
/
iproute2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ip/static-syms.c
15 строк
287 B
Stephen Hemminger
SPDX license identifiers
24 ноя 2017, 23:21
24 ноя 2017, 23:21
6054c1e
Код
Авторство
О чём код?
/* SPDX-License-Identifier: GPL-2.0 */ /* * This file creates a dummy version of dynamic loading * for environments where dynamic linking * is not used or available. */ #include <string.h> #include "dlfcn.h" void *_dlsym(const char *sym) { #include "static-syms.h" return NULL; }