PCP: fixup: Missing headers for DynamicMeter

This commit is contained in:
Sohaib Mohamed 2021-07-18 06:25:45 +02:00 committed by BenBE
parent c9abd788b1
commit 90b209ee37
2 changed files with 5 additions and 0 deletions

View File

@ -5,10 +5,14 @@ htop - DynamicMeter.c
Released under the GNU GPLv2, see the COPYING file Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text. in the source distribution for its full text.
*/ */
#include "config.h" // IWYU pragma: keep #include "config.h" // IWYU pragma: keep
#include "DynamicMeter.h" #include "DynamicMeter.h"
#include <stdbool.h>
#include <stddef.h>
#include "CRT.h" #include "CRT.h"
#include "Object.h" #include "Object.h"
#include "Platform.h" #include "Platform.h"

View File

@ -1,6 +1,7 @@
#ifndef HEADER_DynamicMeter #ifndef HEADER_DynamicMeter
#define HEADER_DynamicMeter #define HEADER_DynamicMeter
#include "Hashtable.h"
#include "Meter.h" #include "Meter.h"