summaryrefslogtreecommitdiff
path: root/src/export/mystdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/export/mystdlib.c')
-rw-r--r--src/export/mystdlib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/export/mystdlib.c b/src/export/mystdlib.c
index 17f123b..ffc0cd9 100644
--- a/src/export/mystdlib.c
+++ b/src/export/mystdlib.c
@@ -49,7 +49,6 @@ void unmap_file ( MAP *pMap )
49int getfilesize( int fd, unsigned long *size) 49int getfilesize( int fd, unsigned long *size)
50{ 50{
51 struct stat sb; 51 struct stat sb;
52 int ret;
53 if( fstat( fd, &sb )) return -1; 52 if( fstat( fd, &sb )) return -1;
54 *size = sb.st_size; 53 *size = sb.st_size;
55 return 0; 54 return 0;