Browse Source

all: Don't include system errno.h when it's not needed.

pull/3230/merge
Damien George 7 years ago
parent
commit
aa7be82a4d
  1. 1
      cc3200/mods/pybuart.c
  2. 2
      extmod/modbtree.c
  3. 1
      extmod/modussl_axtls.c
  4. 1
      extmod/modussl_mbedtls.c
  5. 1
      extmod/modwebrepl.c
  6. 5
      extmod/modwebsocket.c
  7. 1
      extmod/uos_dupterm.c
  8. 1
      extmod/vfs_fat_file.c
  9. 1
      mpy-cross/main.c
  10. 1
      py/reader.c

1
cc3200/mods/pybuart.c

@ -27,7 +27,6 @@
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <errno.h>
#include <string.h> #include <string.h>
#include "py/mpconfig.h" #include "py/mpconfig.h"

2
extmod/modbtree.c

@ -26,7 +26,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h> // for declaration of global errno variable
#include <fcntl.h> #include <fcntl.h>
#include "py/nlr.h" #include "py/nlr.h"

1
extmod/modussl_axtls.c

@ -26,7 +26,6 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <errno.h>
#include "py/nlr.h" #include "py/nlr.h"
#include "py/runtime.h" #include "py/runtime.h"

1
extmod/modussl_mbedtls.c

@ -29,7 +29,6 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <errno.h>
#include "py/nlr.h" #include "py/nlr.h"
#include "py/runtime.h" #include "py/runtime.h"

1
extmod/modwebrepl.c

@ -27,7 +27,6 @@
#include <stdio.h> #include <stdio.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <errno.h>
#include "py/nlr.h" #include "py/nlr.h"
#include "py/obj.h" #include "py/obj.h"

5
extmod/modwebsocket.c

@ -27,7 +27,6 @@
#include <stdio.h> #include <stdio.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <errno.h>
#include "py/nlr.h" #include "py/nlr.h"
#include "py/obj.h" #include "py/obj.h"
@ -88,7 +87,7 @@ STATIC mp_uint_t websocket_read(mp_obj_t self_in, void *buf, mp_uint_t size, int
self->buf_pos += out_sz; self->buf_pos += out_sz;
self->to_recv -= out_sz; self->to_recv -= out_sz;
if (self->to_recv != 0) { if (self->to_recv != 0) {
*errcode = EAGAIN; *errcode = MP_EAGAIN;
return MP_STREAM_ERROR; return MP_STREAM_ERROR;
} }
} }
@ -267,7 +266,7 @@ STATIC mp_uint_t websocket_ioctl(mp_obj_t self_in, mp_uint_t request, uintptr_t
return cur; return cur;
} }
default: default:
*errcode = EINVAL; *errcode = MP_EINVAL;
return MP_STREAM_ERROR; return MP_STREAM_ERROR;
} }
} }

1
extmod/uos_dupterm.c

@ -24,7 +24,6 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include <errno.h>
#include <string.h> #include <string.h>
#include "py/mpconfig.h" #include "py/mpconfig.h"

1
extmod/vfs_fat_file.c

@ -28,7 +28,6 @@
#if MICROPY_VFS && MICROPY_VFS_FAT #if MICROPY_VFS && MICROPY_VFS_FAT
#include <stdio.h> #include <stdio.h>
#include <errno.h>
#include "py/nlr.h" #include "py/nlr.h"
#include "py/runtime.h" #include "py/runtime.h"

1
mpy-cross/main.c

@ -28,7 +28,6 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <errno.h>
#include "py/mpstate.h" #include "py/mpstate.h"
#include "py/compile.h" #include "py/compile.h"

1
py/reader.c

@ -71,7 +71,6 @@ void mp_reader_new_mem(mp_reader_t *reader, const byte *buf, size_t len, size_t
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <errno.h>
typedef struct _mp_reader_posix_t { typedef struct _mp_reader_posix_t {
bool close_fd; bool close_fd;

Loading…
Cancel
Save