summaryrefslogtreecommitdiff
path: root/src/common/sort.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-01-29 20:56:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-01-29 21:04:47 (GMT)
commit6c51b9eed427fd55ce1457834853386cc8d543cd (patch)
tree47b8106bdb086278386d05c838178a06cc00f805 /src/common/sort.h
parent8a7d7b3303dee1a381893391c04acab35dec6942 (diff)
Handled properly imported/exported ELF symbols, as well as all other symbols.
Diffstat (limited to 'src/common/sort.h')
-rw-r--r--src/common/sort.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/sort.h b/src/common/sort.h
index a887543..4ec5214 100644
--- a/src/common/sort.h
+++ b/src/common/sort.h
@@ -26,6 +26,7 @@
#include <stdbool.h>
+#include <stdint.h>
#include <stdlib.h>
@@ -36,6 +37,9 @@ int sort_boolean(bool, bool);
/* Compare une valeur avec une autre. */
int sort_unsigned_long(unsigned long, unsigned long);
+/* Compare une valeur de 64 bits avec une autre. */
+int sort_uint64_t(uint64_t, uint64_t);
+
/* Compare un pointeur avec un autre. */
int sort_pointer(const void *, const void *, __compar_fn_t);