Commented out inet_sendfile64 fixing compile error

This commit is contained in:
MissValeska 2015-02-06 12:00:29 -08:00
parent 296e4e5519
commit 941413c77e

View File

@ -1180,8 +1180,9 @@ inet_sendfile(int out_fd, int in_fd, off_t * offset, size_t count)
return err;
}
/* For use in 32 bit systems requiring 64 bit operations */
/* For use in 32 bit systems requiring 64 bit operations
* Currently non-functional. */
/*
#if UINTPTR_MAX == 0xffffffff
#ifndef _LARGEFILE64_SOURCE
#define _LARGEFILE64_SOURCE
@ -1199,4 +1200,4 @@ inet_sendfile64(int out_fd, int in_fd, off64_t * offset, size_t count)
}
return err;
}
#endif
#endif*/