summaryrefslogtreecommitdiffstats
path: root/osdep/ftello.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/ftello.c')
-rw-r--r--osdep/ftello.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/osdep/ftello.c b/osdep/ftello.c
deleted file mode 100644
index d11710b89f..0000000000
--- a/osdep/ftello.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * ftello.c
- * 64-bit version of ftello() for systems which do not have it
- */
-
-#include "config.h"
-
-#include <stdio.h>
-#include <sys/types.h>
-
-off_t
-ftello(FILE *stream)
-{
- fpos_t floc;
-
- if (fgetpos(stream, &floc) != 0)
- return -1;
- return floc;
-}