Commit 39b48e02 by David Edelsohn Committed by David Edelsohn

* Object.m (strlen): 64-bit PowerPC is a 64bit platform as well.

From-SVN: r33170
parent b9bfacf0
2000-04-15 David Edelsohn <edelsohn@gnu.org>
* Object.m (strlen): 64-bit PowerPC is a 64bit platform as well.
2000-04-12 Jakub Jelinek <jakub@redhat.com>
* Object.m (strlen): Provide prototype on all 64bit platforms,
......
......@@ -320,7 +320,7 @@ extern int errno;
object_get_class_name(self), sel_get_name(aSel)];
}
#if defined(__alpha__) || (defined(__sparc__) && (defined(__sparcv9) || defined(__arch64__))) || (defined(__ia64__) && defined(__LP64__))
#if defined(__alpha__) || (defined (_ARCH_PPC) && defined (__64BIT__)) || (defined(__sparc__) && (defined(__sparcv9) || defined(__arch64__))) || (defined(__ia64__) && defined(__LP64__))
extern size_t strlen(const char*);
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment