repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed bash/dash/sh issue (Ubuntu)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
sys
/
m88kbug
/
crt0.c
blob
d0d95e4184c7ec2ed22aebba967de099070a1c9a
1
extern
int
main
(
int
argc
,
char
**
argv
);
2
3
extern
char
edata
;
4
extern
char
end
;
5
extern
char
stack
;
6
7
_start
()
8
{
9
char
*
p
;
10
11
p
= &
edata
+
1
;
12
while
(
p
< &
end
)
13
{
14
*
p
++ =
0
;
15
}
16
17
main
(
0
,
0
);
18
_exit
();
19
}