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
616f7d00
Commit
616f7d00
authored
Dec 13, 1991
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r116
parent
262c1264
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
gcc/ginclude/stddef.h
+15
-0
No files found.
gcc/ginclude/stddef.h
View file @
616f7d00
...
@@ -7,6 +7,12 @@
...
@@ -7,6 +7,12 @@
/* This avoids lossage on Sunos but only if stdtypes.h comes first.
/* This avoids lossage on Sunos but only if stdtypes.h comes first.
There's no way to win with the other order! Sun lossage. */
There's no way to win with the other order! Sun lossage. */
/* In case nobody has defined these types, but we aren't running under
GCC 2.00, make sure that __PTRDIFF_TYPE__, __SIZE__TYPE__, and
__WCHAR_TYPE__ have reasonable values. This can happen if the
parts of GCC is compiled by an older compiler, that actually
include gstddef.h, such as collect2. */
/* Signed type of difference of two pointers. */
/* Signed type of difference of two pointers. */
#ifndef _PTRDIFF_T
/* in case <sys/types.h> has defined it. */
#ifndef _PTRDIFF_T
/* in case <sys/types.h> has defined it. */
...
@@ -19,6 +25,9 @@
...
@@ -19,6 +25,9 @@
#define __PTRDIFF_T
#define __PTRDIFF_T
#define _PTRDIFF_T_
#define _PTRDIFF_T_
#define ___int_ptrdiff_t_h
#define ___int_ptrdiff_t_h
#ifndef __PTRDIFF_TYPE__
#define __PTRDIFF_TYPE__ long int
#endif
typedef
__PTRDIFF_TYPE__
ptrdiff_t
;
typedef
__PTRDIFF_TYPE__
ptrdiff_t
;
#endif
/* ___int_ptrdiff_t_h */
#endif
/* ___int_ptrdiff_t_h */
#endif
/* _PTRDIFF_T_ */
#endif
/* _PTRDIFF_T_ */
...
@@ -38,6 +47,9 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
...
@@ -38,6 +47,9 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
#define __SIZE_T
#define __SIZE_T
#define _SIZE_T_
#define _SIZE_T_
#define ___int_size_t_h
#define ___int_size_t_h
#ifndef __SIZE_TYPE__
#define __SIZE_TYPE__ long unsigned int
#endif
typedef
__SIZE_TYPE__
size_t
;
typedef
__SIZE_TYPE__
size_t
;
#endif
/* ___int_size_t_h */
#endif
/* ___int_size_t_h */
#endif
/* _SIZE_T_ */
#endif
/* _SIZE_T_ */
...
@@ -57,6 +69,9 @@ typedef __SIZE_TYPE__ size_t;
...
@@ -57,6 +69,9 @@ typedef __SIZE_TYPE__ size_t;
#define __WCHAR_T
#define __WCHAR_T
#define _WCHAR_T_
#define _WCHAR_T_
#define ___int_wchar_t_h
#define ___int_wchar_t_h
#ifndef __WCHAR_TYPE__
#define __WCHAR_TYPE__ int
#endif
typedef
__WCHAR_TYPE__
wchar_t
;
typedef
__WCHAR_TYPE__
wchar_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