[git commit ldso-future] handle the type mismatch of ftell[o] and fseek[o] if long int != off_t

Peter S. Mazinger ps.m at gmx.net
Wed Apr 20 10:50:38 UTC 2011


commit: http://git.uclibc.org/uClibc/commit/?id=0c6c71e3733f39be7820d99216dfbdde68d33dd8
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/ldso-future

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
---
 libc/stdio/fseeko.c |    2 +-
 libc/stdio/ftello.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c
index 3caf1ac..16b0c04 100644
--- a/libc/stdio/fseeko.c
+++ b/libc/stdio/fseeko.c
@@ -77,5 +77,5 @@ int FSEEK(register FILE *stream, OFFSET_TYPE offset, int whence)
 libc_hidden_def(fseeko64)
 #else
 libc_hidden_def(fseek)
-strong_alias(fseek,fseeko)
+strong_alias_untyped(fseek,fseeko)
 #endif
diff --git a/libc/stdio/ftello.c b/libc/stdio/ftello.c
index e8ff365..219b699 100644
--- a/libc/stdio/ftello.c
+++ b/libc/stdio/ftello.c
@@ -53,5 +53,5 @@ OFFSET_TYPE FTELL(register FILE *stream)
 libc_hidden_def(ftello64)
 #else
 libc_hidden_def(ftell)
-strong_alias(ftell,ftello)
+strong_alias_untyped(ftell,ftello)
 #endif
-- 
1.7.3.4



More information about the uClibc-cvs mailing list