Browse Source

Fix for stricmp

teensy4-core
PaulStoffregen 7 years ago
parent
commit
1730d0b754
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      teensy3/wiring.h

+ 2
- 0
teensy3/wiring.h View File

@@ -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()

Loading…
Cancel
Save