repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tcc
/
84_hex-float.c
blob
0ef09bfc2d442c46be3ddd74a8c472ddb71d82ad
1
extern
int
printf
(
const char
*
format
, ...);
2
3
#define ACPI_TYPE_INVALID 0x1E
4
#define NUM_NS_TYPES ACPI_TYPE_INVALID+1
5
int
array
[
NUM_NS_TYPES
];
6
7
#define n 0xe
8
int
main
()
9
{
10
printf
(
"n+1 = %d
\n
"
,
n
+
1
);
11
// printf("n+1 = %d\n", 0xe+1);
12
}