From b882004687554eb6f9ca7596af7f365b3e1b598b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 19 Nov 2005 09:13:33 +0000 Subject: simplify Makefile rules for handling of LFS files by tweaking the way we compile the source files as suggested by psm --- libc/stdio/ftello64.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libc/stdio/ftello64.c (limited to 'libc/stdio/ftello64.c') diff --git a/libc/stdio/ftello64.c b/libc/stdio/ftello64.c new file mode 100644 index 000000000..3ba201968 --- /dev/null +++ b/libc/stdio/ftello64.c @@ -0,0 +1,15 @@ +/* Copyright (C) 2004 Manuel Novoa III + * + * GNU Library General Public License (LGPL) version 2 or later. + * + * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details. + */ + +#include "_stdio.h" + +#ifdef __UCLIBC_HAS_LFS__ +# define __DO_LARGEFILE +# define FTELL __ftello64 +# define OFFSET_TYPE __off64_t +# include "fgetpos.c" +#endif -- cgit v1.2.3