Copyright clean-up (part 1):
[AROS.git] / compiler / startup / elf-startup.c
blob8dab00fef8b7a8283ea488837bd99f2f7814adbf
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /*
7 * This file is used as startup code by ELF wrapper.
8 * It's purpose is only to define _start symbol which is
9 * the default entry point. This is needed in order to make
10 * the compiler passing link tests in configure scripts.
11 * It's not used by AROS code in any way.
14 int _start(void)
16 return -1;