From 2431e3c401e7725504a34fb98c058c219445102a Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 15 Apr 2011 20:16:10 +0200 Subject: handle the type mismatch of ftell[o] and fseek[o] if long int != off_t Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/stdio/fseeko.c | 2 +- libc/stdio/ftello.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/stdio') diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c index 3caf1ac79..16b0c043a 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 e8ff36533..219b6996a 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 -- cgit v1.2.3