glibc/SOURCES/tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c
2024-07-15 12:53:08 +03:00

8 lines
100 B
C

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