diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-02 15:59:26 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-02 15:59:26 +0000 |
commit | 8ce4c5946262d3e1bda933dd773dceca6e6219bc (patch) | |
tree | b8294087bd341dbd1e80cfb592bc390fd9d9dfb9 | |
parent | d15f9f0dfc7351c9499d927a251e461523fadb96 (diff) |
fix __weak_alias
-rw-r--r-- | lib/libc/arch/arm/softfloat/fpgetround.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/arm/softfloat/fpgetround.c b/lib/libc/arch/arm/softfloat/fpgetround.c index aadc56fe47c..337c652e8fc 100644 --- a/lib/libc/arch/arm/softfloat/fpgetround.c +++ b/lib/libc/arch/arm/softfloat/fpgetround.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fpgetround.c,v 1.2 2004/02/01 05:40:52 drahn Exp $ */ +/* $OpenBSD: fpgetround.c,v 1.3 2004/02/02 15:59:25 drahn Exp $ */ /* $NetBSD: fpgetround.c,v 1.2 2002/01/13 21:45:53 thorpej Exp $ */ /*- @@ -49,7 +49,7 @@ #include "softfloat.h" #ifdef __weak_alias -__weak_alias(_fpgetround,fpgetround) +__weak_alias(fpgetround,_fpgetround); #endif fp_rnd |