]> andersk Git - splint.git/blob - test/temp/gethostbyname.c
Removed stray files in test
[splint.git] / test / temp / gethostbyname.c
1 # include <netdb.h>
2
3 /*@-incondefs@*/ /* Suppress warning about inconsistent definition. */
4 extern /*@dependent@*/ struct hostent *gethostbyname (const char *) ;
5 /*@=incondefs@*/
6
7 void f (const char *name)
8 {
9   struct hostent *hname = gethostbyname (name);
10
11   return;
12 }
This page took 0.068772 seconds and 5 git commands to generate.