From: Lennart Poettering Date: Thu, 27 Aug 2020 13:46:28 +0000 (+0200) Subject: basic: make sure we include inttypes.h when we use its types X-Git-Tag: v247-rc1~335^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=524bdc95e7e803cf26d8f828c9bf32ff068a0b84;p=thirdparty%2Fsystemd.git basic: make sure we include inttypes.h when we use its types --- diff --git a/src/basic/cap-list.h b/src/basic/cap-list.h index ab41924d9cc..4bfb1a355b4 100644 --- a/src/basic/cap-list.h +++ b/src/basic/cap-list.h @@ -1,6 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ #pragma once +#include + const char *capability_to_name(int id); int capability_from_name(const char *name); int capability_list_length(void);