Got rid of unused mmap section.

This commit is contained in:
Wayne Davison
2005-01-28 17:06:41 +00:00
parent d679c8390a
commit df6933406f

View File

@@ -251,17 +251,6 @@ OFF_T do_lseek(int fd, OFF_T offset, int whence)
#endif
}
#ifdef USE_MMAP
void *do_mmap(void *start, int len, int prot, int flags, int fd, OFF_T offset)
{
#if SIZEOF_OFF64_T
return mmap64(start, len, prot, flags, fd, offset);
#else
return mmap(start, len, prot, flags, fd, offset);
#endif
}
#endif
char *d_name(struct dirent *di)
{
#if HAVE_BROKEN_READDIR