php-src/ext/mysql/libmysql/my_net.h
2000-02-19 10:10:46 +00:00

11 lines
259 B
C

/* thread safe version of some common functions */
/* for thread safe my_inet_ntoa */
#if !defined(MSDOS) && !defined(__WIN32__)
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
void my_inet_ntoa(struct in_addr in, char *buf);