res_state.c 181 B

123456789
  1. #include <resolv.h>
  2. /* This is completely unused, and exists purely to satisfy broken apps. */
  3. struct __res_state *__res_state()
  4. {
  5. static struct __res_state res;
  6. return &res;
  7. }