blob: 4c378600b0f383382d86a4af5f4767e9393e5d0d [file] [log] [blame]
Simon Glass70db4212012-02-15 15:51:16 -08001/*
2 * decls for symbols defined in the linker script
3 *
4 * Copyright (c) 2012 The Chromium OS Authors.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#ifndef __SANDBOX_SECTIONS_H
10#define __SANDBOX_SECTIONS_H
11
Simon Glass18652862013-03-05 14:39:37 +000012#include <asm-generic/sections.h>
13
Simon Glass70db4212012-02-15 15:51:16 -080014struct sb_cmdline_option;
15
16extern struct sb_cmdline_option *__u_boot_sandbox_option_start[],
17 *__u_boot_sandbox_option_end[];
18
19static inline size_t __u_boot_sandbox_option_count(void)
20{
21 return __u_boot_sandbox_option_end - __u_boot_sandbox_option_start;
22}
23
24#endif