diff --git a/src/black_holes/EAGLE/black_holes_properties.h b/src/black_holes/EAGLE/black_holes_properties.h
index 6f20ec1884938dd49a7569fd41282f5b094fea4b..5f86bedf34d2bdab0ab66a785c0565e5710d08e1 100644
--- a/src/black_holes/EAGLE/black_holes_properties.h
+++ b/src/black_holes/EAGLE/black_holes_properties.h
@@ -19,11 +19,19 @@
 #ifndef SWIFT_EAGLE_BLACK_HOLES_PROPERTIES_H
 #define SWIFT_EAGLE_BLACK_HOLES_PROPERTIES_H
 
+/* Config parameters. */
+#include "../config.h"
+
+/* Local includes. */
 #include "chemistry.h"
 #include "hydro_properties.h"
 
+/* Includes. */
 #include <string.h>
 
+/**
+ * @brief Modes of energy injection for AGN feedback
+ */
 enum AGN_feedback_models {
   AGN_random_ngb_model,       /*< Random neighbour model for AGN feedback */
   AGN_isotropic_model,        /*< Isotropic model of AGN feedback */
diff --git a/src/feedback/EAGLE/feedback_properties.h b/src/feedback/EAGLE/feedback_properties.h
index db81b4fc4ebb858aacccac63792ea2e4b6e29391..83db5e1114926b869dd596515598eb1eac08406d 100644
--- a/src/feedback/EAGLE/feedback_properties.h
+++ b/src/feedback/EAGLE/feedback_properties.h
@@ -19,9 +19,16 @@
 #ifndef SWIFT_EAGLE_FEEDBACK_PROPERTIES_H
 #define SWIFT_EAGLE_FEEDBACK_PROPERTIES_H
 
+/* Config parameters. */
+#include "../config.h"
+
+/* Local includes. */
 #include "chemistry.h"
 #include "hydro_properties.h"
 
+/**
+ * @brief Modes of energy injection for SNII feedback
+ */
 enum SNII_feedback_models {
   SNII_random_ngb_model,       /*< Random neighbour model for SNII feedback */
   SNII_isotropic_model,        /*< Isotropic model of SNII feedback */