diff options
Diffstat (limited to 'lib/libc/stdio/ftell.c')
-rw-r--r-- | lib/libc/stdio/ftell.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index 0a2016ce10b..a75ebbbaad7 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftell.c,v 1.10 2012/05/21 22:24:19 matthew Exp $ */ +/* $OpenBSD: ftell.c,v 1.11 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -83,6 +83,7 @@ ftello(FILE *fp) out: FUNLOCKFILE(fp); return (pos); } +DEF_WEAK(ftello); long ftell(FILE *fp) @@ -94,3 +95,4 @@ ftell(FILE *fp) } return ((long)offset); } +DEF_STRONG(ftell); |