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
be3dad6f
Commit
be3dad6f
authored
24 years ago
by
Philippe De Muyter
Committed by
Jeff Law
24 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* system.h (S_ISBLK): Provide fallback definition.
From-SVN: r33710
parent
eda3fbbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+4
-0
gcc/system.h
+5
-0
No files found.
gcc/ChangeLog
View file @
be3dad6f
Fri
May
5
10
:
27
:
06
2000
Philippe
De
Muyter
<
phdm
@macqel
.
be
>
*
system
.
h
(
S_ISBLK
)
:
Provide
fallback
definition
.
2000
-
05
-
05
Geoff
Berry
<
geoffb
@bops
.
com
>
*
extend
.
texi
(
Extended
Asm
)
:
Document
inability
to
give
asm
...
...
This diff is collapsed.
Click to expand it.
gcc/system.h
View file @
be3dad6f
...
...
@@ -478,6 +478,11 @@ extern void abort PARAMS ((void));
#define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
#endif
/* Test if something is a block special file. */
#ifndef S_ISBLK
#define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
#endif
/* Test if something is a socket. */
#ifndef S_ISSOCK
# ifdef S_IFSOCK
...
...
This diff is collapsed.
Click to expand it.
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