ethan
2023-04-08 f5e277c240b9211a1f047b88788f34f3dd5a97c2
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
29
/**
 * @file Ems_assert.h
 * @author your name (you@domain.com)
 * @brief 
 * @version 0.1
 * @date 2023-04-05
 * 
 * @copyright Copyright (c) 2023
 * 
 */
 
#ifndef EMS_ASSERT_H
#define EMS_ASSERT_H
 
#ifdef __cplusplus
extern "C" {
#endif
 
/* public define ------------------------------------------------------------ */
#define EMS_TAG(tag)
#define ems_assert(ex)                     ((void)0)
 
#ifdef __cplusplus
}
#endif
 
#endif
 
/* ----------------------------- end of file -------------------------------- */