Files
fastfetch/src/detection/loadavg/loadavg_sunos.c
T
2024-06-17 15:23:35 +08:00

9 lines
186 B
C

#include "detection/loadavg/loadavg.h"
#include <sys/loadavg.h>
const char* ffDetectLoadavg(double result[3])
{
return getloadavg(result, 3) == 3 ? NULL : "getloadavg() failed";
}