glibc/tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c
Sergey Kolosov ab4bc8a24e Extend the test coverage
Move some of the RHEL QE testcases upstream to Fedora.
2022-05-31 09:29:27 +02:00

8 lines
100 B
C

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