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
17eb7951
Commit
17eb7951
authored
Feb 15, 2000
by
Loren J. Rittle
Committed by
Gerald Pfeifer
Feb 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ginclude/stddef.h: Correct usage of _BSD_RUNE_T_ for FreeBSD.
From-SVN: r31988
parent
2d759f71
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+4
-0
gcc/ginclude/stddef.h
+7
-0
No files found.
gcc/ChangeLog
View file @
17eb7951
2000
-
02
-
15
Loren
Rittle
<
ljrittle
@acm
.
org
>
*
ginclude
/
stddef
.
h
:
Correct
usage
of
_BSD_RUNE_T_
for
FreeBSD
.
2000
-
02
-
15
Kaveh
R
.
Ghazi
<
ghazi
@caip
.
rutgers
.
edu
>
*
Makefile
.
in
(
TREE_H
,
collect2
.
o
,
gcc
.
h
,
mips
-
tfile
.
o
,
cccp
.
o
,
...
...
gcc/ginclude/stddef.h
View file @
17eb7951
...
...
@@ -269,6 +269,13 @@ typedef long ssize_t;
#ifdef _BSD_RUNE_T_
#if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)
typedef
_BSD_RUNE_T_
rune_t
;
#if defined (__FreeBSD__)
/* Why is this file so hard to maintain properly? In constrast to
the comment above regarding BSD/386 1.1, on FreeBSD for as long
as the symbol has existed, _BSD_RUNE_T_ must not stay defined or
redundant typedefs will occur when stdlib.h is included after this file. */
#undef _BSD_RUNE_T_
#endif
#endif
#endif
#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