PROTON-2130: Really fix include files
diff --git a/c/src/proactor/epoll-internal.h b/c/src/proactor/epoll-internal.h
index ed831a6..20b01ac 100644
--- a/c/src/proactor/epoll-internal.h
+++ b/c/src/proactor/epoll-internal.h
@@ -35,6 +35,7 @@
 #include <proton/proactor.h>
 
 #include "netaddr-internal.h"
+#include "proactor-internal.h"
 
 #ifdef __cplusplus
 extern "C" {
diff --git a/c/src/proactor/epoll.c b/c/src/proactor/epoll.c
index d2a424d..76b5c37 100644
--- a/c/src/proactor/epoll.c
+++ b/c/src/proactor/epoll.c
@@ -57,8 +57,8 @@
 /* Avoid GNU extensions, in particular the incompatible alternative strerror_r() */
 #undef _GNU_SOURCE
 
-#include "proactor-internal.h"
 #include "epoll-internal.h"
+#include "proactor-internal.h"
 #include "core/engine-internal.h"
 #include "core/logger_private.h"
 #include "core/util.h"