* elf/rtld.c: Include <sys/param.h>.
	* elf/dl-reloc.c: Likewise.
This commit is contained in:
Ulrich Drepper 2001-08-24 19:56:19 +00:00
parent c35eb5b0c9
commit af8bf6bd49
3 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,8 @@
* elf/do-rel.h (elf_dynamic_do_rel): Fix problem with ld.so
startup. Explicitly remove lazy part for RTLD_BOOTSTRAP since gcc
doesn't do it.
* elf/rtld.c: Include <sys/param.h>.
* elf/dl-reloc.c: Likewise.
2001-08-24 Maciej W. Rozycki <macro@ds2.pg.gda.pl>

View File

@ -23,6 +23,7 @@
#include <unistd.h>
#include <ldsodefs.h>
#include <sys/mman.h>
#include <sys/param.h>
#include <sys/types.h>
#include "dynamic-link.h"

View File

@ -22,6 +22,7 @@
#include <string.h>
#include <unistd.h>
#include <sys/mman.h> /* Check if MAP_ANON is defined. */
#include <sys/param.h>
#include <sys/stat.h>
#include <ldsodefs.h>
#include <stdio-common/_itoa.h>