From: Josuah Demangeon Date: Tue, 8 May 2018 11:42:17 +0000 (+0200) Subject: include before for time struct timeval X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=ea2e2bd00403e02bee6298cfbb78eaa45869c851;p=suckless%2Fslstatus.git include before 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 */ ... }; --- diff --git a/components/temperature.c b/components/temperature.c index 136e0d4..35bdb01 100644 --- a/components/temperature.c +++ b/components/temperature.c @@ -16,9 +16,9 @@ #include #include #include + #include /* before for struct timeval */ #include #include - #include const char * temp(const char *null)