From a9f4431e0a205617bb316dbe459ac6188dd8b490 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 3 May 2017 14:33:41 +0200 Subject: proc: include headers to get definitions for ino_t and pid_t Include and in the header already as the declarations for proc_find_by_inode(...) and proc_exists(...) use ino_t and pid_t, respectively. Fixes: 1edfb2409d15 ("flowtop: Move & refactor walk_processes() to proc.c") Fixes: 1df0f481922a ("flowtop: Add process UI tab entry") Signed-off-by: Tobias Klauser --- proc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proc.h b/proc.h index 4c34a64..7b5be9b 100644 --- a/proc.h +++ b/proc.h @@ -2,6 +2,8 @@ #define PROC_H #include +#include +#include extern void cpu_affinity(int cpu); extern int set_proc_prio(int prio); -- cgit v1.2.3-54-g00ecf