Commit 1e28f3480721c916b89e643c5cdfceaef69ad0f1

Aurelien Jarno 2006-03-26T17:09:24

Directly call the function fmtcheck instead of using __weak_reference

diff --git a/src/fmtcheck.c b/src/fmtcheck.c
index 5d54b7c..7e5a500 100644
--- a/src/fmtcheck.c
+++ b/src/fmtcheck.c
@@ -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;