Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/stdlib remove accidental __strong_alias additions, ...



details:   https://anonhg.NetBSD.org/src/rev/2022d9d33fc0
branches:  trunk
changeset: 824045:2022d9d33fc0
user:      christos <christos%NetBSD.org@localhost>
date:      Fri May 19 19:55:16 2017 +0000

description:
remove accidental __strong_alias additions, noticed by coypu.

diffstat:

 lib/libc/stdlib/jemalloc.c |  8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diffs (29 lines):

diff -r 5d9ab34ae947 -r 2022d9d33fc0 lib/libc/stdlib/jemalloc.c
--- a/lib/libc/stdlib/jemalloc.c        Fri May 19 19:51:10 2017 +0000
+++ b/lib/libc/stdlib/jemalloc.c        Fri May 19 19:55:16 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: jemalloc.c,v 1.41 2017/05/19 19:51:10 christos Exp $   */
+/*     $NetBSD: jemalloc.c,v 1.42 2017/05/19 19:55:16 christos Exp $   */
 
 /*-
  * Copyright (C) 2006,2007 Jason Evans <jasone%FreeBSD.org@localhost>.
@@ -118,7 +118,7 @@
 
 #include <sys/cdefs.h>
 /* __FBSDID("$FreeBSD: src/lib/libc/stdlib/malloc.c,v 1.147 2007/06/15 22:00:16 jasone Exp $"); */ 
-__RCSID("$NetBSD: jemalloc.c,v 1.41 2017/05/19 19:51:10 christos Exp $");
+__RCSID("$NetBSD: jemalloc.c,v 1.42 2017/05/19 19:55:16 christos Exp $");
 
 #ifdef __FreeBSD__
 #include "libc_private.h"
@@ -162,10 +162,6 @@
 #ifdef __NetBSD__
 #  include <reentrant.h>
 #  include "extern.h"
-__strong_alias(__libc_malloc,malloc)
-__strong_alias(__libc_realloc,realloc)
-__strong_alias(__libc_calloc,calloc)
-__strong_alias(__libc_free,free)
 
 #define STRERROR_R(a, b, c)    strerror_r_ss(a, b, c);
 #endif



Home | Main Index | Thread Index | Old Index