Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot 2022-08-29 19:20:28 +00:00
commit 986b77bff6

View File

@ -19,7 +19,9 @@
#include "midi.h"
#include <string.h> //for memcpy
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#ifndef MIN
# define MIN(x, y) (((x) < (y)) ? (x) : (y))
#endif
#ifndef NULL
# define NULL 0