Skip to content

Commit ceddc60

Browse files
committed
Refactor: based: Clean up includes in based_transaction.c
Using include-what-you-use. Signed-off-by: Reid Wahl <nrwahl@protonmail.com>
1 parent e527ed7 commit ceddc60

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

daemons/based/based_transaction.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023-2025 the Pacemaker project contributors
2+
* Copyright 2023-2026 the Pacemaker project contributors
33
*
44
* The version control history for this file may have further details.
55
*
@@ -9,10 +9,18 @@
99

1010
#include <crm_internal.h>
1111

12+
#include <errno.h> // EOPNOTSUPP
1213
#include <stdbool.h>
14+
#include <stddef.h> // NULL
15+
#include <stdlib.h> // free
1316

1417
#include <libxml/tree.h> // xmlNode
1518

19+
#include <crm/cib/internal.h> // cib__*
20+
#include <crm/common/internal.h> // pcmk__client_t, pcmk__s, pcmk__xe_*, etc.
21+
#include <crm/common/logging.h> // CRM_CHECK
22+
#include <crm/common/results.h> // pcmk_rc_*
23+
1624
#include "pacemaker-based.h"
1725

1826
/*!

0 commit comments

Comments
 (0)