diff options
| author | Damien George <damien.p.george@gmail.com> | 2017-07-24 18:43:14 +1000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2017-07-24 18:43:14 +1000 |
| commit | aa7be82a4dff59b22763abbe1bd5e74c0e37b453 (patch) | |
| tree | 995769631aff96f66484fc90b4e573fe7563a908 /extmod/modbtree.c | |
| parent | a559098fecd0a0e2aa98d2a8b3b6ba080b4e096f (diff) | |
all: Don't include system errno.h when it's not needed.
Diffstat (limited to 'extmod/modbtree.c')
| -rw-r--r-- | extmod/modbtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modbtree.c b/extmod/modbtree.c index 127dd71a3..229daaf0f 100644 --- a/extmod/modbtree.c +++ b/extmod/modbtree.c @@ -26,7 +26,7 @@ #include <stdio.h> #include <string.h> -#include <errno.h> +#include <errno.h> // for declaration of global errno variable #include <fcntl.h> #include "py/nlr.h" |
