Module Name: src Committed By: joerg Date: Mon Dec 2 12:20:44 UTC 2013
Modified Files: src/common/lib/libc/stdlib: strtoimax.c Log Message: Fix aliases. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/common/lib/libc/stdlib/strtoimax.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/common/lib/libc/stdlib/strtoimax.c diff -u src/common/lib/libc/stdlib/strtoimax.c:1.1 src/common/lib/libc/stdlib/strtoimax.c:1.2 --- src/common/lib/libc/stdlib/strtoimax.c:1.1 Mon Dec 2 04:39:10 2013 +++ src/common/lib/libc/stdlib/strtoimax.c Mon Dec 2 12:20:44 2013 @@ -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 @@ __RCSID("$NetBSD: strtoimax.c,v 1.1 2013 #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