From 7d65909eed56f9c1eef54563c01fbf9a96e8db6e Mon Sep 17 00:00:00 2001 From: Peter Grehan Date: Thu, 29 Dec 2005 04:09:38 +0000 Subject: [PATCH] The minbrk symbol is hidden the same on powerpc as other FreeBSD platforms. --- lib/libc/gmon/gmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/gmon/gmon.c b/lib/libc/gmon/gmon.c index b1212f022e9a..3f29009a79b6 100644 --- a/lib/libc/gmon/gmon.c +++ b/lib/libc/gmon/gmon.c @@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$"); #include "libc_private.h" -#if defined(__i386__) || defined(__sparc64__) || defined(__amd64__) +#if defined(__i386__) || defined(__sparc64__) || defined(__amd64__) || defined(__powerpc__) extern char *minbrk __asm (".minbrk"); #else extern char *minbrk __asm ("minbrk");