diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 4 | ||||
-rw-r--r-- | elf/dl-lookup.c | 2 | ||||
-rw-r--r-- | elf/dl-runtime.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/elf/Makefile b/elf/Makefile index 19c5ef8..45494de 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1,5 +1,3 @@ -# Makefile for elf subdirectory of GNU C Library. - # Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. # This file is part of the GNU C Library. @@ -18,6 +16,8 @@ # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. +# Makefile for elf subdirectory of GNU C Library. + subdir := elf headers = elf.h bits/elfclass.h bits/dlfcn.h link.h dlfcn.h diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index 19e6f05..c0f9731 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -18,10 +18,10 @@ Boston, MA 02111-1307, USA. */ #include <alloca.h> -#include <stddef.h> #include <link.h> #include <assert.h> #include <string.h> +#include <unistd.h> #include "dl-hash.h" #include <dl-machine.h> diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index 99927a9..b01338a 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -18,7 +18,7 @@ Boston, MA 02111-1307, USA. */ #include <link.h> -#include <stddef.h> +#include <unistd.h> /* The global scope we will use for symbol lookups. |