]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Directly call the function fmtcheck instead of using __weak_reference
authorAurelien Jarno <aurel32@debian.org>
Sun, 26 Mar 2006 17:09:24 +0000 (17:09 +0000)
committerGuillem Jover <guillem@hadrons.org>
Tue, 6 May 2008 05:54:03 +0000 (08:54 +0300)
src/fmtcheck.c

index 5d54b7cd45385bd4b55960ad7e18bb3ecff3c4de..7e5a500d012beb451edb59f39067012142c75e7a 100644 (file)
@@ -41,7 +41,7 @@ __FBSDID("$FreeBSD: /repoman/r/ncvs/src/lib/libc/gen/fmtcheck.c,v 1.8 2005/03/21
 #include <string.h>
 #include <ctype.h>
 
-__weak_reference(__fmtcheck, fmtcheck);
+/* __weak_reference(__fmtcheck, fmtcheck); */
 
 enum __e_fmtcheck_types {
        FMTCHECK_START,
@@ -245,7 +245,7 @@ get_next_format(const char **pf, EFT eft)
 }
 
 __const char *
-__fmtcheck(const char *f1, const char *f2)
+fmtcheck(const char *f1, const char *f2)
 {
        const char      *f1p, *f2p;
        EFT             f1t, f2t;