diff options
Diffstat (limited to 'lib/libc/stdio/ftell.c')
| -rw-r--r-- | lib/libc/stdio/ftell.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index c28fe143..d26ba071 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -1,6 +1,7 @@ -#include <stdio.h> -#include <limits.h> -#include <errno.h> +#include <errno.h> // for EOVERFLOW, errno +#include <limits.h> // for LONG_MAX +#include <stdio.h> // for ftello, FILE, ftell +#include <sys/types.h> // for off_t long ftell(FILE *stream) { |
