Fixes compilation errors caused by GNUC extension syntax(Fully adopted C99 standard). Temporary removal tools(Function incomplete).
15 lines
214 B
C
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__ */
|