Make it clear in job output whether we are using bs_is_seq_rand or not
[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 }