Files
mr-library/include/mr_config.h
MacRsh ba3f400524 fix(atomic): Remove GNUC extension syntax.
Fixes compilation errors caused by GNUC extension syntax(Fully adopted C99 standard).
Temporary removal tools(Function incomplete).
2024-07-25 02:01:46 +08:00

15 lines
214 B
C

#ifndef __MR_CONFIG_H__
#define __MR_CONFIG_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define MR_CFG_HEAP_SIZE 4096
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __MR_CONFIG_H__ */