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
301264e6
Commit
301264e6
authored
Nov 27, 1991
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial revision
From-SVN: r77
parent
2055cea7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
0 deletions
+79
-0
gcc/ginclude/stddef.h
+79
-0
No files found.
gcc/ginclude/stddef.h
0 → 100644
View file @
301264e6
#ifndef _STDDEF_H
#ifndef _STDDEF_H_
#define _STDDEF_H
#define _STDDEF_H_
#ifndef __sys_stdtypes_h
/* This avoids lossage on Sunos but only if stdtypes.h comes first.
There's no way to win with the other order! Sun lossage. */
/* Signed type of difference of two pointers. */
#ifndef _PTRDIFF_T
/* in case <sys/types.h> has defined it. */
#ifndef _T_PTRDIFF
#ifndef __PTRDIFF_T
#ifndef _PTRDIFF_T_
#ifndef ___int_ptrdiff_t_h
#define _PTRDIFF_T
#define _T_PTRDIFF
#define __PTRDIFF_T
#define _PTRDIFF_T_
#define ___int_ptrdiff_t_h
typedef
__PTRDIFF_TYPE__
ptrdiff_t
;
#endif
/* ___int_ptrdiff_t_h */
#endif
/* _PTRDIFF_T_ */
#endif
/* __PTRDIFF_T */
#endif
/* _T_PTRDIFF */
#endif
/* _PTRDIFF_T */
/* Unsigned type of `sizeof' something. */
#ifndef _SIZE_T
/* in case <sys/types.h> has defined it. */
#ifndef _T_SIZE
#ifndef __SIZE_T
#ifndef _SIZE_T_
#ifndef ___int_size_t_h
#define _SIZE_T
#define _T_SIZE
#define __SIZE_T
#define _SIZE_T_
#define ___int_size_t_h
typedef
__SIZE_TYPE__
size_t
;
#endif
/* ___int_size_t_h */
#endif
/* _SIZE_T_ */
#endif
/* __SIZE_T */
#endif
/* _T_SIZE */
#endif
/* _SIZE_T */
/* Data type for wide chars. */
#ifndef _WCHAR_T
#ifndef _T_WCHAR_
#ifndef __WCHAR_T
#ifndef _WCHAR_T_
#ifndef ___int_wchar_t_h
#define _WCHAR_T
#define _T_WCHAR_
#define __WCHAR_T
#define _WCHAR_T_
#define ___int_wchar_t_h
typedef
__WCHAR_TYPE__
wchar_t
;
#endif
#endif
#endif
#endif
#endif
#endif
/* __sys_stdtypes_h */
/* A null pointer constant. */
#undef NULL
/* in case <stdio.h> has defined it. */
#define NULL ((void *)0)
/* Offset of member MEMBER in a struct of type TYPE. */
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#endif
/* _STDDEF_H_ */
#endif
/* _STDDEF_H */
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