diff options
author | Aurelien Jarno <aurel32@debian.org> | 2006-03-26 17:09:24 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2008-05-06 08:54:03 +0300 |
commit | 1e28f3480721c916b89e643c5cdfceaef69ad0f1 (patch) | |
tree | ff48f14aa96138f2edffc7b282955402e24fe7b6 /src | |
parent | d493e6cd987a2d0c6b7d1df1c28883f1974260a9 (diff) | |
download | libbsd-1e28f3480721c916b89e643c5cdfceaef69ad0f1.tar.gz |
Directly call the function fmtcheck instead of using __weak_reference
Diffstat (limited to 'src')
-rw-r--r-- | src/fmtcheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |