lib/rand: fix bug with non uint64_t aligned random buffer fill
[fio.git] / lib / inet_aton.c
1 #include "inet_aton.h"
2
3 int inet_aton(const char *cp, struct in_addr *inp)
4 {
5         return inet_pton(AF_INET, cp, inp);
6 }