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
e7f115de
Commit
e7f115de
authored
Sep 06, 2003
by
Bernardo Innocenti
Committed by
Bernardo Innocenti
Sep 06, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/c_std/std_cstdlib.h: Avoid using missing C library symbols.
From-SVN: r71127
parent
e86ac6af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/include/c_std/std_cstdlib.h
+4
-0
No files found.
libstdc++-v3/ChangeLog
View file @
e7f115de
2003-08-09 Bernardo Innocenti <bernie@develer.com>
* include/c_std/std_cstdlib.h: Avoid using missing C library symbols.
2003-09-04 Petur Runolfsson <peturr02@ru.is>
PR libstdc++/9028
...
...
libstdc++-v3/include/c_std/std_cstdlib.h
View file @
e7f115de
...
...
@@ -101,9 +101,11 @@ namespace std
using
::
labs
;
using
::
ldiv
;
using
::
malloc
;
#ifdef _GLIBCXX_HAVE_MBSTATE_T
using
::
mblen
;
using
::
mbstowcs
;
using
::
mbtowc
;
#endif // _GLIBCXX_HAVE_MBSTATE_T
using
::
qsort
;
using
::
rand
;
using
::
realloc
;
...
...
@@ -112,8 +114,10 @@ namespace std
using
::
strtol
;
using
::
strtoul
;
using
::
system
;
#ifdef _GLIBCXX_USE_WCHAR_T
using
::
wcstombs
;
using
::
wctomb
;
#endif // _GLIBCXX_USE_WCHAR_T
inline
long
abs
(
long
__i
)
{
return
labs
(
__i
);
}
...
...
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