allow screens to request compositing features
[AROS.git] / compiler / startup / elf-startup.c
blobe9d9c2a3a80db5c95b7fbb8d0406946b3bc263a2
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;