diff options
Diffstat (limited to 'lib/x1000-installer/test_lib/file.c')
-rw-r--r-- | lib/x1000-installer/test_lib/file.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/x1000-installer/test_lib/file.c b/lib/x1000-installer/test_lib/file.c deleted file mode 100644 index 8769c009a4..0000000000 --- a/lib/x1000-installer/test_lib/file.c +++ /dev/null @@ -1,11 +0,0 @@ -#include "file.h" - -off_t filesize(int osfd) -{ - struct stat sb; - - if (!fstat(osfd, &sb)) - return sb.st_size; - else - return -1; -} |