diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-10-28 19:02:16 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-02 02:52:48 -0500 |
commit | 7beb9fff1bee1ccbf7f2258ce527b8d5df2a85ea (patch) | |
tree | 2868fd769f2a528e67e6e6fa2760b3dab77d5252 /rts/linker/Elf.c | |
parent | 7b2cf80717a6b16e3f6135c6c6905bd5d3bbde72 (diff) | |
download | haskell-wip/rts-configure-2.tar.gz |
rts configure scriptwip/rts-configure-2
Need to use CPP not `if` in rts.buildinfo
Bump cabal submodule to include
https://github.com/haskell/cabal/pull/8565
Diffstat (limited to 'rts/linker/Elf.c')
-rw-r--r-- | rts/linker/Elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/linker/Elf.c b/rts/linker/Elf.c index 3595a4c3d4..ff242e835a 100644 --- a/rts/linker/Elf.c +++ b/rts/linker/Elf.c @@ -28,10 +28,10 @@ #include "linker/util.h" #include "linker/elf_util.h" -#include <link.h> #include <stdlib.h> #include <unistd.h> #include <string.h> +#include <link.h> #if defined(HAVE_DLFCN_H) #include <dlfcn.h> #endif |