Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
restrict.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Wind River Systems, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
16#if !defined(_MLIBC_RESTRICT_defined)
17#define _MLIBC_RESTRICT_defined
18
19#ifdef __cplusplus
20 #define _MLIBC_RESTRICT __restrict__
21#else
22 #define _MLIBC_RESTRICT restrict
23#endif
24
25#endif