runtime.h
Go to the documentation of this file.
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
11extern "C" {
12#endif
13
20void runtime_install_stack_guard(void *stack_bottom);
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif