4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 11:00:04 +08:00
2000-02-17 19:39:52 +00:00

23 lines
337 B
C

/* This is mostly just a placeholder (copied from m88kbug) until we
figure out what it really should be... -fnf */
extern int main(int argc, char **argv);
extern char _edata;
extern char _end;
extern char stack;
_start()
{
char *p;
p = &_edata + 1;
while (p < &_end)
{
*p++ = 0;
}
main(0, 0);
_exit();
}