glibc/tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c

8 lines
100 B
C
Raw Normal View History

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