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
979bbe90
Commit
979bbe90
authored
Nov 30, 2009
by
Arnaud Charlet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(malloc32, realloc32): Remove VMS-specific routines.
From-SVN: r154764
parent
bee2a781
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
11 deletions
+0
-11
gcc/ada/s-crtl.ads
+0
-11
No files found.
gcc/ada/s-crtl.ads
View file @
979bbe90
...
...
@@ -131,11 +131,6 @@ package System.CRTL is
function
malloc
(
Size
:
size_t
)
return
System
.
Address
;
pragma
Import
(
C
,
malloc
,
"malloc"
);
function
malloc32
(
Size
:
size_t
)
return
System
.
Address
;
pragma
Import
(
C
,
malloc32
,
"malloc"
);
--
An
uncalled
alias
for
malloc
except
on
64
bit
systems
needing
to
--
allocate
32
bit
memory
.
procedure
memcpy
(
S1
:
System
.
Address
;
S2
:
System
.
Address
;
N
:
size_t
);
pragma
Import
(
C
,
memcpy
,
"memcpy"
);
...
...
@@ -155,12 +150,6 @@ package System.CRTL is
(
Ptr
:
System
.
Address
;
Size
:
size_t
)
return
System
.
Address
;
pragma
Import
(
C
,
realloc
,
"realloc"
);
function
realloc32
(
Ptr
:
System
.
Address
;
Size
:
size_t
)
return
System
.
Address
;
pragma
Import
(
C
,
realloc32
,
"realloc"
);
--
An
uncalled
alias
for
realloc
except
on
64
bit
systems
needing
to
--
allocate
32
bit
memory
.
procedure
rewind
(
stream
:
FILEs
);
pragma
Import
(
C
,
rewind
,
"rewind"
);
...
...
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