summaryrefslogtreecommitdiff
path: root/ports/unix/modsocket.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/modsocket.c')
-rw-r--r--ports/unix/modsocket.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ports/unix/modsocket.c b/ports/unix/modsocket.c
index 737550b42..5c935d229 100644
--- a/ports/unix/modsocket.c
+++ b/ports/unix/modsocket.c
@@ -25,6 +25,10 @@
* THE SOFTWARE.
*/
+#include "py/mpconfig.h"
+
+#if MICROPY_PY_SOCKET
+
#include <stdio.h>
#include <assert.h>
#include <string.h>
@@ -49,8 +53,6 @@
#include "extmod/vfs.h"
#include <poll.h>
-#if MICROPY_PY_SOCKET
-
/*
The idea of this module is to implement reasonable minimum of
socket-related functions to write typical clients and servers.