Corrections to SVN properties.
[AROS.git] / compiler / startup / elf-startup.c
blobcb1daa07a5e3cc83168306592d46cd97555f8d29
1 /*
2 * This file is used as startup code by ELF wrapper.
3 * It's purpose is only to define _start symbol which is
4 * the default entry point. This is needed in order to make
5 * the compiler passing link tests in configure scripts.
6 * It's not used by AROS code in any way.
7 */
9 int _start(void)
11 return -1;