inet_ntoa_r.h 265 B

12345678910
  1. #ifndef __INET_NTOA_R_H
  2. #define __INET_NTOA_R_H
  3. /*
  4. * My solaris 5.6 system running gcc 2.8.1 does *not* have this prototype
  5. * in any system include file! Isn't that weird?
  6. */
  7. char *inet_ntoa_r(const struct in_addr in, char *buffer, int buflen);
  8. #endif