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
75444da7
Commit
75444da7
authored
Dec 13, 2000
by
Michael Sokolov
Committed by
DJ Delorie
Dec 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* strtoul.c: Include safe-ctype.h, not ctype.h.
From-SVN: r38221
parent
c6d79bee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libiberty/ChangeLog
+4
-0
libiberty/strtoul.c
+1
-1
No files found.
libiberty/ChangeLog
View file @
75444da7
2000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* strtoul.c: Include safe-ctype.h, not ctype.h.
2000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
2000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
* safe-ctype.c: New file.
* safe-ctype.c: New file.
...
...
libiberty/strtoul.c
View file @
75444da7
...
@@ -37,7 +37,6 @@
...
@@ -37,7 +37,6 @@
#ifdef HAVE_SYS_PARAM_H
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#include <sys/param.h>
#endif
#endif
#include <ctype.h>
#include <errno.h>
#include <errno.h>
#ifdef NEED_DECLARATION_ERRNO
#ifdef NEED_DECLARATION_ERRNO
extern
int
errno
;
extern
int
errno
;
...
@@ -46,6 +45,7 @@ extern int errno;
...
@@ -46,6 +45,7 @@ extern int errno;
#include <stdlib.h>
#include <stdlib.h>
#endif
#endif
#include "ansidecl.h"
#include "ansidecl.h"
#include "safe-ctype.h"
#ifndef ULONG_MAX
#ifndef ULONG_MAX
#define ULONG_MAX ((unsigned long)(~0L))
/* 0xFFFFFFFF */
#define ULONG_MAX ((unsigned long)(~0L))
/* 0xFFFFFFFF */
...
...
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