summaryrefslogtreecommitdiffhomepage
path: root/src/hint/CompilerHint.h
blob: b5c6ef6b40a95ad5efee7b2f90dea6c69e6950f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel


#ifndef NE_COMPILERHINT_H
#define NE_COMPILERHINT_H

#ifdef __NECTAR__
#pragma compiler(hint_manifest)
#endif

#define _Input
#define _Output

#define _Optional

#define _StrictCheckInput
#define _StrictCheckOutput

#define _InOut
#define _StrictInOut

#define _OptionalIn
#define _OptionalOut

#endif  // ifndef NE_COMPILERHINT_H