FreeBSD _umtx_op: fix bad wrapper for robust lists
[valgrind.git] / none / tests / resolv.c
blobdcd3655433b5bb53328fb83c21d941c80553333a
2 #include <arpa/inet.h>
3 #include <netinet/in.h>
4 #include <resolv.h>
5 #include <stdio.h>
7 int main(int argc, char *argv[])
9 printf("PRE _res.nscount = %d\n", _res.nscount);
10 fflush(stdout);
11 res_init();
12 printf("POST _res.nscount = %d\n", ( int ) _res.nscount > 0 );
13 fflush(stdout);
14 return 0;