swap: OS split

This commit is contained in:
Quentin Rameau 2018-04-30 15:14:36 +02:00 committed by Aaron Marcher
parent 259e106b4f
commit 72f5a0d69a
3 changed files with 2 additions and 4 deletions

View File

@ -20,7 +20,7 @@ COM =\
components/num_files\
components/$(OS)/ram \
components/run_command\
components/swap\
components/$(OS)/swap \
components/temperature\
components/uptime\
components/user\

View File

@ -1,10 +1,9 @@
/* See LICENSE file for copyright and license details. */
#if defined(__linux__)
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include "../util.h"
#include "../../util.h"
const char *
swap_free(void)
@ -135,4 +134,3 @@ swap_used(void)
return bprintf("%f", (float)(total - free - cached) / 1024 / 1024);
}
#endif

View File