repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
sys
/
w65
/
crt0.c
blob
b7598973bae28036db83663b22c9da7b8cac2216
1
2
3
int
p
;
4
extern
int
edata
;
5
extern
int
end
;
6
start
()
7
{
8
int
*
s
;
9
asm
(
"lda #stack"
);
10
asm
(
"tcs"
);
11
for
(
s
= &
edata
;
s
!= &
end
;
s
++)
12
*
s
=
0
;
13
14
main
();
15
exit
(
0
);
16
}