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
1927f640
Commit
1927f640
authored
May 08, 2019
by
Arnaud Charlet
Committed by
Arnaud Charlet
May 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* standard.ads.h: New file.
From-SVN: r271003
parent
d486dbfb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
0 deletions
+88
-0
gcc/ada/ChangeLog
+4
-0
gcc/ada/standard.ads.h
+84
-0
No files found.
gcc/ada/ChangeLog
View file @
1927f640
2019-05-08 Arnaud Charlet <charlet@adacore.com>
* standard.ads.h: New file.
2019-05-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc-interface/Makefile.in (install-gcc-specs): Use foreach.
...
...
gcc/ada/standard.ads.h
0 → 100644
View file @
1927f640
/****************************************************************************
* *
* GNAT COMPILER COMPONENTS *
* *
* S T A N D A R D *
* *
* C Header File *
* *
* Copyright (C) 2015, AdaCore *
* *
* GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- *
* ware Foundation; either version 3, or (at your option) any later ver- *
* sion. GNAT is distributed in the hope that it will be useful, but WITH- *
* OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* As a special exception under Section 7 of GPL version 3, you are granted *
* additional permissions described in the GCC Runtime Library Exception, *
* version 3.1, as published by the Free Software Foundation. *
* *
* You should have received a copy of the GNU General Public License and *
* a copy of the GCC Runtime Library Exception along with this program; *
* see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
* <http://www.gnu.org/licenses/>. *
* *
* GNAT was originally developed by the GNAT team at New York University. *
* Extensive contributions were provided by Ada Core Technologies Inc. *
* *
****************************************************************************/
#ifndef STANDARD_ADS_H
#define STANDARD_ADS_H
#include <stdint.h>
typedef
unsigned
char
boolean
;
#ifndef false
#define false 0
#endif
#ifndef true
#define true 1
#endif
typedef
uint8_t
unsigned_8
;
typedef
uint16_t
unsigned_16
;
typedef
uint32_t
unsigned_32
;
typedef
uint64_t
unsigned_64
;
typedef
int8_t
integer_8
;
typedef
int16_t
integer_16
;
typedef
int32_t
integer_32
;
typedef
int64_t
integer_64
;
typedef
int
integer
;
typedef
int
natural
;
typedef
int
positive
;
typedef
signed
char
short_short_integer
;
typedef
short
short_integer
;
typedef
long
long_integer
;
typedef
long
long
long_long_integer
;
typedef
long
long
universal_integer
;
typedef
float
short_float
;
typedef
double
long_float
;
typedef
long
double
long_long_float
;
typedef
long
double
universal_real
;
typedef
char
character
;
typedef
integer_16
wide_character
;
typedef
integer_32
wide_wide_character
;
typedef
character
*
access_character
;
typedef
character
*
string
;
typedef
wide_character
*
wide_string
;
typedef
wide_wide_character
*
wide_wide_string
;
typedef
integer_64
duration
;
#endif
/* STANDARD_ADS_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