summaryrefslogtreecommitdiff
path: root/source3/lib/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/system.c')
-rw-r--r--source3/lib/system.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c
index 52be504c52..c3d97e0350 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -179,21 +179,6 @@ int sys_lstat(char *fname,SMB_STRUCT_STAT *sbuf)
}
/*******************************************************************
- An statvfs() wrapper that will deal with 64 bit filesizes.
-********************************************************************/
-
-int sys_statvfs( const char *path, SMB_STRUCT_STATVFS *fsd)
-{
-#if defined(STAT_STATVFS64)
- return statvfs64(path, fsd);
-#elif defined(STAT_STATVFS)
- return statvfs(path, fsd);
-#else
- return -1;
-#endif
-}
-
-/*******************************************************************
An ftruncate() wrapper that will deal with 64 bit filesizes.
********************************************************************/