1 /*
2  * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PICO_RUNTIME_H
8 #define _PICO_RUNTIME_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 /** \file runtime.h
15 *  \defgroup pico_runtime pico_runtime
16 * Aggregate runtime support including @ref pico_bit_ops, @ref pico_divider, @ref pico_double, @ref pico_int64_ops, @ref pico_float, @ref pico_malloc, @ref pico_mem_ops and @ref pico_standard_link
17 */
18 
19 
20 void runtime_install_stack_guard(void *stack_bottom);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif