From 409b30439c221abc715f8704829d5b7627967666 Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Fri, 15 Apr 2011 20:16:10 +0200
Subject: [PATCH 258/396] handle the type mismatch of ftell[o] and fseek[o] if long int != off_t

Signed-off-by: Peter S. Mazinger <ps.m@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.0.4

