| 1234567891011121314151617 | /*  This file is lisenced under LGPL *  Copyright (C) 2002-2003,    George Thanos <george.thanos@gdt.gr> *                              Yannis Mitsos <yannis.mitsos@gdt.gr> */.global __start__start:	call L1, 0, __uClibc_start/* Define a symbol for the first piece of initialized data.  */	.data	.globl __data_start__data_start:	.long 0	.weak data_start	data_start = __data_start
 |