sections.c 296 B

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