htop/unsupported/Battery.c

9 lines
141 B
C
Raw Normal View History

#include "Battery.h"
2015-03-16 06:16:18 +00:00
#include <math.h>
2015-03-16 06:16:18 +00:00
void Battery_getData(double* level, ACPresence* isOnAC) {
2020-09-07 09:52:42 +00:00
*level = NAN;
2015-03-16 06:16:18 +00:00
*isOnAC = AC_ERROR;
}