Files
libmetal/lib/system/linux/assert.h
Arnaud Pouliquen d3a27c1454 lib: fix file headers for doxygen generation
- start by "/**",
- fix file relative path,
- fix typos,

Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
2026-01-13 10:33:04 +01:00

29 lines
571 B
C

/*
* Copyright (c) 2018, Xilinx Inc. and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/**
* @file linux/assert.h
* @brief Linux assertion support.
*/
#ifndef __METAL_ASSERT__H__
#error "Include metal/assert.h instead of metal/linux/assert.h"
#endif
#ifndef __METAL_LINUX_ASSERT__H__
#define __METAL_LINUX_ASSERT__H__
#include <assert.h>
/**
* @brief Assertion macro for Linux-based applications.
* @param cond Condition to evaluate.
*/
#define metal_sys_assert(cond) assert(cond)
#endif /* __METAL_LINUX_ASSERT__H__ */