blob: 86fc4df061815eb017db195bace6c5d7faf3a1b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* U-Boot - section.c
*
* Copyright (c) 2014 Analog Devices Inc.
*
* Licensed under the GPL-2 or later.
*/
char __bss_start[0] __attribute__((section(".__bss_start")));
char __bss_end[0] __attribute__((section(".__bss_end")));
char __init_end[0] __attribute__((section(".__init_end")));
|