blob: cdda0c9856014f2e386eb5174165c5600c87f7c6 (
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
|
// 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
|