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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug3424150.c
blob
c7d7f718a99d05c9d34df28621f724fec93287bb
1
/*
2
bug3424150.c
3
*/
4
5
#include <testfwk.h>
6
7
#ifndef __SDCC_pdk14
// Lack of memory
8
unsigned char
_pInputBuf
[
80
];
9
unsigned char
_iInputPos
;
10
11
void
OnEditCancel
()
12
{
13
if
(!
_pInputBuf
[
_iInputPos
] &&
_iInputPos
)
14
{
15
_iInputPos
--;
16
}
17
_pInputBuf
[
_iInputPos
] =
0
;
18
}
19
#endif
20
21
void
22
testBug
(
void
)
23
{
24
}
25