forked from cil-project/cil
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d9c4f2
commit 9e3b8c6
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#include<inttypes.h> | ||
int main() { | ||
int8_t i; | ||
int16_t j; | ||
int32_t h; | ||
int64_t k; | ||
int_fast8_t fi; | ||
int_fast16_t fj; | ||
int_fast32_t fh; | ||
int_fast64_t fk; | ||
int_least8_t li; | ||
int_least16_t lj; | ||
int_least32_t lk; | ||
int_least64_t li; | ||
intmax_t m; | ||
intptr_t p; | ||
|
||
uint8_t ui; | ||
uint16_t uj; | ||
uint32_t uh; | ||
uint64_t uk; | ||
uint_fast8_t ufi; | ||
uint_fast16_t ufj; | ||
uint_fast32_t ufh; | ||
uint_fast64_t ufk; | ||
uint_least8_t uli; | ||
uint_least16_t ulj; | ||
uint_least32_t ulk; | ||
uint_least64_t uli; | ||
uintmax_t um; | ||
uintptr_t up; | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters