diff options
author | deischen <deischen@FreeBSD.org> | 2006-04-22 16:47:59 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2006-04-22 16:47:59 +0000 |
commit | 31b4d2103e4e90e8322781e86047473c392a0641 (patch) | |
tree | f66d3b94588260fc55396280e066e862ceb3085e | |
parent | 08f186157f4eef991a140c2959e628fa1ce7e052 (diff) | |
download | FreeBSD-src-31b4d2103e4e90e8322781e86047473c392a0641.zip FreeBSD-src-31b4d2103e4e90e8322781e86047473c392a0641.tar.gz |
Oops, correct the weak reference (s/fclose/fcloseall).
Spotted by: Antoine Brodin (antoine _dot_ brodin _at_ laposte _dot_ net)
-rw-r--r-- | lib/libc/stdio/fcloseall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fcloseall.c b/lib/libc/stdio/fcloseall.c index 52c9e14..8ee9a62 100644 --- a/lib/libc/stdio/fcloseall.c +++ b/lib/libc/stdio/fcloseall.c @@ -29,7 +29,7 @@ __FBSDID("$FreeBSD$"); #include <stdio.h> #include "local.h" -__weak_reference(__fcloseall, fclose); +__weak_reference(__fcloseall, fcloseall); void __fcloseall(void) |