Sfoglia il codice sorgente

Fix clang warnings about implicit declaration

Stéphane Raimbault 14 anni fa
parent
commit
49b2208dd5
2 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 3 0
      src/modbus-rtu.c
  2. 1 0
      src/modbus-tcp.c

+ 3 - 0
src/modbus-rtu.c

@@ -20,6 +20,7 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <string.h>
+#include <unistd.h>
 
 #include "modbus.h"
 #include "modbus-private.h"
@@ -250,6 +251,8 @@ ssize_t _modbus_rtu_recv(modbus_t *ctx, uint8_t *rsp, int rsp_length)
 #endif
 }
 
+int _modbus_rtu_flush(modbus_t *);
+
 /* The check_crc16 function shall return the message length if the CRC is
    valid. Otherwise it shall return -1 and set errno to EMBADCRC. */
 int _modbus_rtu_check_integrity(modbus_t *ctx, uint8_t *msg,

+ 1 - 0
src/modbus-tcp.c

@@ -22,6 +22,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
+#include <unistd.h>
 
 #include <sys/types.h>
 #ifdef NATIVE_WIN32