diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-08-13 23:39:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-08-13 23:39:45 +0000 |
commit | 64c5a652fb76e999eea27aed777d710d747ed949 (patch) | |
tree | 99f55f2b3ed8fd1b6d0fda2523d5a6ee7063b05a /ldso/include | |
parent | 9f47eaf3223c17a99cc88aea3287697e2635681f (diff) |
Fixup PAGE_SIZE problems
-Erik
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/ldso.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h index 6bb87c264..494b57521 100644 --- a/ldso/include/ldso.h +++ b/ldso/include/ldso.h @@ -26,11 +26,7 @@ #include <dl-syscall.h> #include <dl-string.h> /* Pull in the arch specific page size */ -#include <asm/page.h> -#ifndef PAGE_SIZE -# define PAGE_SHIFT 12 -# define PAGE_SIZE (1UL << PAGE_SHIFT) -#endif +#include <bits/uClibc_page.h> /* Now the ldso specific headers */ #include <dl-elf.h> #include <dl-hash.h> |