summaryrefslogtreecommitdiff
path: root/ldso/include/ldso.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-02-17 06:37:02 +0000
committerEric Andersen <andersen@codepoet.org>2004-02-17 06:37:02 +0000
commit5b61513518417b2d3a0d0bb246d3a8189e176587 (patch)
tree6f3fd048bd9397c95689961a5a7ec4f8d252cab1 /ldso/include/ldso.h
parent3532e704fd568e55de373cbb271271349c1b0fae (diff)
Provide the ldso syscalls and string funcs earlier in the list
Diffstat (limited to 'ldso/include/ldso.h')
-rw-r--r--ldso/include/ldso.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h
index a23e89355..c87bac440 100644
--- a/ldso/include/ldso.h
+++ b/ldso/include/ldso.h
@@ -7,10 +7,8 @@
#include <stdarg.h>
/* Pull in the arch specific type information */
#include <sys/types.h>
-/* Now the ldso specific headers */
-#include <dl-elf.h>
+/* Pull in the ldso syscalls and string functions */
#include <dl-syscall.h>
-#include <dl-hash.h>
#include <dl-string.h>
/* Pull in the arch specific page size */
#include <asm/page.h>
@@ -18,6 +16,9 @@
# define PAGE_SHIFT 12
# define PAGE_SIZE (1UL << PAGE_SHIFT)
#endif
+/* Now the ldso specific headers */
+#include <dl-elf.h>
+#include <dl-hash.h>
/* Prepare for the case that `__builtin_expect' is not available. */
#if __GNUC__ == 2 && __GNUC_MINOR__ < 96