glibc/tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c
Sergey Kolosov 823c0aee76 CI Tests: add fmf test plan
Resolves: RHEL-65327
2025-01-08 19:01:11 +00:00

8 lines
100 B
C

#include <netdb.h>
int main(int ac, char **av)
{
gethostbyname("fedoraproject.org");
return 0;
}