summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-05-24 00:45:06 +0100
committernorly <ny-git@enpas.org>2013-05-24 00:45:06 +0100
commit2e60e5b7733fbb99009421ca84a5e3cdc49e7fa7 (patch)
tree673ef3b8045b518312bafca83b7cfeceab0719e8 /src
parentb1b4beb3b33a204c1e8073d34421ae7c968e2f9d (diff)
Use explicit libelf/* path in includes
Diffstat (limited to 'src')
-rw-r--r--src/elfhandle.c2
-rw-r--r--src/elfops/phdr-contains-section.c4
-rw-r--r--src/elfops/phdr-fixup-selfref.c4
-rw-r--r--src/elfops/section-by-name.c4
-rw-r--r--src/elfops/section-in-segment.c4
-rw-r--r--src/elfops/section-name.c4
-rw-r--r--src/generic/scnSize.c2
-rw-r--r--src/main.c4
-rw-r--r--src/model/expandNobits.c2
-rw-r--r--src/model/fromFile.c4
-rw-r--r--src/model/insert.c2
-rw-r--r--src/model/section-name.c4
-rw-r--r--src/model/toFile.c4
-rw-r--r--src/printing/header.c4
-rw-r--r--src/printing/sections.c4
-rw-r--r--src/printing/segments.c4
16 files changed, 28 insertions, 28 deletions
diff --git a/src/elfhandle.c b/src/elfhandle.c
index a17216d..47f9820 100644
--- a/src/elfhandle.c
+++ b/src/elfhandle.c
@@ -6,7 +6,7 @@
#include <string.h>
#include <unistd.h>
-#include <libelf.h>
+#include <libelf/libelf.h>
#include "elfhandle.h"
diff --git a/src/elfops/phdr-contains-section.c b/src/elfops/phdr-contains-section.c
index 6b57019..7a89d61 100644
--- a/src/elfops/phdr-contains-section.c
+++ b/src/elfops/phdr-contains-section.c
@@ -1,5 +1,5 @@
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/elfops/phdr-fixup-selfref.c b/src/elfops/phdr-fixup-selfref.c
index e79f584..d84e83b 100644
--- a/src/elfops/phdr-fixup-selfref.c
+++ b/src/elfops/phdr-fixup-selfref.c
@@ -1,7 +1,7 @@
#include <stdio.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
void elfu_ePhdrFixupSelfRef(Elf *e)
{
diff --git a/src/elfops/section-by-name.c b/src/elfops/section-by-name.c
index 3352b14..38a9dd1 100644
--- a/src/elfops/section-by-name.c
+++ b/src/elfops/section-by-name.c
@@ -1,7 +1,7 @@
#include <string.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/elfops/section-in-segment.c b/src/elfops/section-in-segment.c
index cb62514..1ac9b84 100644
--- a/src/elfops/section-in-segment.c
+++ b/src/elfops/section-in-segment.c
@@ -1,8 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/elfops/section-name.c b/src/elfops/section-name.c
index e77efee..9cd44f7 100644
--- a/src/elfops/section-name.c
+++ b/src/elfops/section-name.c
@@ -1,7 +1,7 @@
#include <stdlib.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/generic/scnSize.c b/src/generic/scnSize.c
index e4cf1c1..43abb13 100644
--- a/src/generic/scnSize.c
+++ b/src/generic/scnSize.c
@@ -1,6 +1,6 @@
#include <assert.h>
#include <sys/types.h>
-#include <gelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/main.c b/src/main.c
index 06de642..a3bf271 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,8 +2,8 @@
#include <stdlib.h>
#include <getopt.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/model/expandNobits.c b/src/model/expandNobits.c
index 6fae9fe..648ee21 100644
--- a/src/model/expandNobits.c
+++ b/src/model/expandNobits.c
@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
-#include <gelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/model/fromFile.c b/src/model/fromFile.c
index da57ad7..6e79867 100644
--- a/src/model/fromFile.c
+++ b/src/model/fromFile.c
@@ -3,8 +3,8 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/model/insert.c b/src/model/insert.c
index edfe153..492f06a 100644
--- a/src/model/insert.c
+++ b/src/model/insert.c
@@ -1,6 +1,6 @@
#include <assert.h>
#include <sys/types.h>
-#include <gelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/model/section-name.c b/src/model/section-name.c
index fe31448..68d9986 100644
--- a/src/model/section-name.c
+++ b/src/model/section-name.c
@@ -1,7 +1,7 @@
#include <assert.h>
#include <stdlib.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/model/toFile.c b/src/model/toFile.c
index 3b0ae62..b675e55 100644
--- a/src/model/toFile.c
+++ b/src/model/toFile.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
diff --git a/src/printing/header.c b/src/printing/header.c
index 33f7bdb..0be2536 100644
--- a/src/printing/header.c
+++ b/src/printing/header.c
@@ -1,7 +1,7 @@
#include <stdio.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
void printHeader(Elf *e)
diff --git a/src/printing/sections.c b/src/printing/sections.c
index e06f3b7..3cdf270 100644
--- a/src/printing/sections.c
+++ b/src/printing/sections.c
@@ -1,7 +1,7 @@
#include <stdio.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>
#include "printing.h"
diff --git a/src/printing/segments.c b/src/printing/segments.c
index 74eeb83..f7ffd54 100644
--- a/src/printing/segments.c
+++ b/src/printing/segments.c
@@ -1,7 +1,7 @@
#include <stdio.h>
-#include <libelf.h>
-#include <gelf.h>
+#include <libelf/libelf.h>
+#include <libelf/gelf.h>
#include <libelfu/libelfu.h>