mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_Linux: I2CDevice: add missing stdio.h include
This was probably being included by another header, but it's not on gcc >= 6.1 and glibc 2.23.
This commit is contained in:
parent
8d5ceda534
commit
d615628367
|
@ -36,6 +36,7 @@
|
|||
#ifndef I2C_SMBUS_BLOCK_MAX
|
||||
#include <linux/i2c.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/stat.h>
|
||||
|
|
Loading…
Reference in New Issue