diff options
| -rw-r--r-- | src/hci.c | 4 | 
1 files changed, 4 insertions, 0 deletions
@@ -45,6 +45,10 @@  #include <bluetooth/hci.h>  #include <bluetooth/hci_lib.h> +#ifndef MIN +#define MIN(x, y) ((x) < (y) ? (x) : (y)) +#endif +  typedef struct {  	char *str;  	unsigned int val;  | 
