Skip to content

Commit defef3c

Browse files
fixup: Add panic.h
1 parent ce5d81c commit defef3c

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

lmdk/include/rtos/panic.h

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* SPDX-License-Identifier: BSD-3-Clause
3+
*
4+
* Copyright(c) June 11, 2026 Intel Corporation. All rights reserved.
5+
*
6+
* Author: Piotr Hoppe <piotr.hoppe@intel.com>
7+
*/
8+
9+
#ifndef PANIC_H
10+
#define PANIC_H
11+
12+
#ifdef __cplusplus
13+
extern "C" {
14+
#endif
15+
16+
#define assert(x) { }
17+
18+
#ifdef __cplusplus
19+
}
20+
#endif
21+
22+
#endif /* PANIC_H */
23+

0 commit comments

Comments
 (0)