From a50ecda625823e1a80f32d1313a379f77f877153 Mon Sep 17 00:00:00 2001
From: Ben Gamari <ben@smart-cactus.org>
Date: Thu, 7 Nov 2019 06:09:44 -0500
Subject: [PATCH] testsuite: Fix header #include order on Windows

<Rts.h> must always come first.
---
 .../unload_multiple_objs/linker_unload_multiple_objs.c       | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/testsuite/tests/rts/linker/unload_multiple_objs/linker_unload_multiple_objs.c b/testsuite/tests/rts/linker/unload_multiple_objs/linker_unload_multiple_objs.c
index d64246ed4f2b..b076809a6b15 100644
--- a/testsuite/tests/rts/linker/unload_multiple_objs/linker_unload_multiple_objs.c
+++ b/testsuite/tests/rts/linker/unload_multiple_objs/linker_unload_multiple_objs.c
@@ -1,9 +1,10 @@
+#include "Rts.h"
 #include "ghcconfig.h"
+#include "HsFFI.h"
+
 #include <stdio.h>
 #include <stdlib.h>
-#include "Rts.h"
 #include <string.h>
-#include "HsFFI.h"
 
 extern void loadPackages(void);
 
-- 
GitLab