diff options
author | Jens Axboe <axboe@kernel.dk> | 2013-01-10 11:23:19 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2013-01-10 11:23:19 +0100 |
commit | 67bf982340d95ca98098ea050b54b4c7adb116c0 (patch) | |
tree | 00b8947272d1301426b199e8f98c6a5933969909 /os/windows/posix.c | |
parent | 78c1111eacdb594e0488d5adc508091fc2a3af88 (diff) | |
download | fio-67bf982340d95ca98098ea050b54b4c7adb116c0.tar.gz fio-67bf982340d95ca98098ea050b54b4c7adb116c0.tar.bz2 |
Add configure script
Get rid of all the fragile guessing and checking of features,
and roll a configure script instead.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'os/windows/posix.c')
-rwxr-xr-x | os/windows/posix.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/os/windows/posix.c b/os/windows/posix.c index f616e876..8b451478 100755 --- a/os/windows/posix.c +++ b/os/windows/posix.c @@ -823,11 +823,6 @@ const char* inet_ntop(int af, const void *restrict src, return ret; } -int inet_aton(const char *cp, struct in_addr *inp) -{ - return inet_pton(AF_INET, cp, inp); -} - int inet_pton(int af, const char *restrict src, void *restrict dst) { INT status = SOCKET_ERROR; |