Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/stdlib Fix aliases.



details:   https://anonhg.NetBSD.org/src/rev/1353fbd3c5ca
branches:  trunk
changeset: 325057:1353fbd3c5ca
user:      joerg <joerg%NetBSD.org@localhost>
date:      Mon Dec 02 12:20:44 2013 +0000

description:
Fix aliases.

diffstat:

 common/lib/libc/stdlib/strtoimax.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r ef6b4ae72b7d -r 1353fbd3c5ca common/lib/libc/stdlib/strtoimax.c
--- a/common/lib/libc/stdlib/strtoimax.c        Mon Dec 02 09:39:54 2013 +0000
+++ b/common/lib/libc/stdlib/strtoimax.c        Mon Dec 02 12:20:44 2013 +0000
@@ -32,7 +32,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: strtoimax.c,v 1.1 2013/12/02 04:39:10 lneto Exp $");
+__RCSID("$NetBSD: strtoimax.c,v 1.2 2013/12/02 12:20:44 joerg Exp $");
 
 #ifdef _LIBC
 #include "namespace.h"
@@ -63,6 +63,6 @@
 #include "_strtol.h"
 
 #ifdef _LIBC
-__weak_alias(_strtoimax, strtoimax)
-__weak_alias(_strtoimax_l, strtoimax_l)
+__weak_alias(strtoimax, _strtoimax)
+__weak_alias(strtoimax_l, _strtoimax_l)
 #endif



Home | Main Index | Thread Index | Old Index