output_buffer: only realloc once, and memset just what we need
[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 }