Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
39b48e02
Commit
39b48e02
authored
Apr 15, 2000
by
David Edelsohn
Committed by
David Edelsohn
Apr 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Object.m (strlen): 64-bit PowerPC is a 64bit platform as well.
From-SVN: r33170
parent
b9bfacf0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libobjc/ChangeLog
+4
-0
libobjc/Object.m
+1
-1
No files found.
libobjc/ChangeLog
View file @
39b48e02
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,
...
...
libobjc/Object.m
View file @
39b48e02
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment