Skip to content

Commit

Permalink
Fix for stricmp
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulStoffregen committed May 30, 2017
1 parent d204b6d commit 1730d0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions teensy3/wiring.h
Expand Up @@ -102,6 +102,8 @@ extern double pow10(double x);
extern float pow10f(float x);
extern long double pow10l(long double x);

#define stricmp(a, b) strcasecmp(a, b)

#define sei() __enable_irq()
#define cli() __disable_irq()
#define interrupts() __enable_irq()
Expand Down

0 comments on commit 1730d0b

Please sign in to comment.