/
githubmirror
/
mdadm
Обзор
Документация
Войти
/
githubmirror
/
mdadm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pwgr.c
16 строк
265 B
Neil Brown
Improve compiling for static binaries.
29 май 2006, 08:09
29 май 2006, 08:09
c97be4d
Код
Авторство
О чём код?
/* * We cannot link a static binary with passwd/group support, so * just do without */ #include <stdlib.h> #include <pwd.h> #include <grp.h> struct passwd *getpwnam(const char *name) { return NULL; } struct group *getgrnam(const char *name) { return NULL; }