mirror of
https://github.com/openharmony/third_party_FatFs.git
synced 2026-07-20 21:42:26 -04:00
fix: ff.h中MIN MAX宏定义不符合常规用法且存在重定义冲突风险
close: #I5OYYA Signed-off-by: arvinzzz <zhaotianyu9@huawei.com> Change-Id: Ibff61316dacd2d685471def2350ca97768ed322c
This commit is contained in:
@@ -374,9 +374,6 @@ typedef struct {
|
||||
#endif
|
||||
} DIR_FILE;
|
||||
|
||||
#define MAX(a, b, c) (c = (a > b) ? a : b)
|
||||
#define MIN(a, b, c) (c = (a < b) ? a : b)
|
||||
|
||||
/* File function return code (FRESULT) */
|
||||
|
||||
typedef enum {
|
||||
|
||||
Reference in New Issue
Block a user