Displaying 1 result from an estimated 1 matches for "dir64".
Did you mean:
dir4
2000 Apr 24
1
Samba 2.0.6 Compilation Warning under Solaris 7
...******************************************************
A readdir wrapper that will deal with 64 bit filesizes.
********************************************************************/
SMB_STRUCT_DIRENT *sys_readdir(DIR *dirp)
{
#if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_READDIR64)
return readdir64(dirp);
#else
return readdir(dirp);
#endif
}
.
.
.
--------------------------------------------------------------------------------
>From include file includes.h:
--------------------------------------------------------------------------------
.
.
.
/*
* Type f...