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