Blob Blame History Raw
#include "inet_aton.h"

int inet_aton(const char *cp, struct in_addr *inp)
{
	return inet_pton(AF_INET, cp, inp);
}