include <sys/time.h> before <sys/sensors.h> for time struct timeval sys/sensors.h has two structs struct timeval: sensor and ksensor: struct sensor { ... struct timeval tv; /* sensor value last change time */ ... };
Josuah Demangeon mail@josuah.net
Tue, 08 May 2018 13:42:17 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
components/temperature.c
→
components/temperature.c
@@ -16,9 +16,9 @@ #elif defined(__OpenBSD__)
#include <errno.h> #include <stdio.h> #include <string.h> + #include <sys/time.h> /* before <sys/sensors.h> for struct timeval */ #include <sys/sensors.h> #include <sys/sysctl.h> - #include <sys/time.h> const char * temp(const char *null)