mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 05:10:23 +00:00
Waldo Bastian for chasing this one into a corner. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@553
14 lines
249 B
C
14 lines
249 B
C
|
|
#include <resolv.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
printf("PRE _res.nscount = %d\n", _res.nscount);
|
|
fflush(stdout);
|
|
res_init();
|
|
printf("POST _res.nscount = %d\n", _res.nscount);
|
|
fflush(stdout);
|
|
return 0;
|
|
}
|