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:
Gustavo Jose de Sousa 2016-05-11 16:07:14 -03:00 committed by Lucas De Marchi
parent 8d5ceda534
commit d615628367
1 changed files with 1 additions and 0 deletions

View File

@ -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>