summaryrefslogtreecommitdiff
path: root/include/libelfu
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-02-23 15:36:30 +0000
committernorly <ny-git@enpas.org>2013-02-23 15:36:30 +0000
commit6f12fafdc4102a9b8c3ffee060cab48f50f4c37d (patch)
treedfed7011c7fb4a81383f84b0ef121b2ff0fe19ba /include/libelfu
parent58b6f8de8862c9ccba763d3607afb5495727e4d6 (diff)
Remove ELFU_BOOL
Diffstat (limited to 'include/libelfu')
-rw-r--r--include/libelfu/analysis.h2
-rw-r--r--include/libelfu/types.h6
2 files changed, 2 insertions, 6 deletions
diff --git a/include/libelfu/analysis.h b/include/libelfu/analysis.h
index 80ec251..f3d4ddb 100644
--- a/include/libelfu/analysis.h
+++ b/include/libelfu/analysis.h
@@ -6,6 +6,6 @@
#include <libelfu/types.h>
-ELFU_BOOL elfu_segmentContainsSection(GElf_Phdr *phdr, Elf_Scn *scn);
+int elfu_segmentContainsSection(GElf_Phdr *phdr, GElf_Shdr *shdr);
#endif
diff --git a/include/libelfu/types.h b/include/libelfu/types.h
index 6ffdd84..a59efca 100644
--- a/include/libelfu/types.h
+++ b/include/libelfu/types.h
@@ -1,10 +1,6 @@
#ifndef __LIBELFU_TYPES_H__
#define __LIBELFU_TYPES_H__
-typedef enum {
- ELFU_ERROR = -1,
- ELFU_FALSE = 0,
- ELFU_TRUE = 1
-} ELFU_BOOL;
+
#endif