Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jonathan Currier
litex
Commits
200d413d
Commit
200d413d
authored
Jun 02, 2019
by
bunnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update stdint.h to include c99 types
needed for some third party libraries to compile
parent
a48858f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
litex/soc/software/include/base/stdint.h
litex/soc/software/include/base/stdint.h
+9
-0
No files found.
litex/soc/software/include/base/stdint.h
View file @
200d413d
...
...
@@ -18,6 +18,15 @@ typedef int int32_t;
typedef
short
int16_t
;
typedef
char
int8_t
;
typedef
char
int_least8_t
;
typedef
unsigned
char
uint_least8_t
;
typedef
short
int_least16_t
;
typedef
unsigned
short
uint_least16_t
;
typedef
int
int_least32_t
;
typedef
unsigned
int
uint_least32_t
;
typedef
long
long
int_least64_t
;
typedef
unsigned
long
long
uint_least64_t
;
#define __int_c_join(a, b) a ## b
#define __int_c(v, suffix) __int_c_join(v, suffix)
#define __uint_c(v, suffix) __int_c_join(v##U, suffix)
...
...
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