install-reloc: Support multi-binary installation.
[gnulib.git] / lib / ftell.c
index babba35..4ad13c9 100644 (file)
@@ -1,5 +1,5 @@
 /* An ftell() function that works around platform bugs.
-   Copyright (C) 2007-2011 Free Software Foundation, Inc.
+   Copyright (C) 2007-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -21,8 +21,6 @@
 
 #include <errno.h>
 #include <limits.h>
-/* Get off_t.  */
-#include <unistd.h>
 
 long
 ftell (FILE *fp)
@@ -30,7 +28,7 @@ ftell (FILE *fp)
   /* Use the replacement ftello function with all its workarounds.  */
   off_t offset = ftello (fp);
   if (LONG_MIN <= offset && offset <= LONG_MAX)
-    return (long)offset;
+    return /* (long) */ offset;
   else
     {
       errno = EOVERFLOW;