diff options
-rw-r--r-- | libc/stdio/fseeko.c | 2 | ||||
-rw-r--r-- | 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 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 |