diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-15 17:02:22 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-15 17:02:22 -0700 |
commit | 176790a7341221ae1681ca3aa44ba1e928f789e3 (patch) | |
tree | 97355ce165e372cf7fb0684521349709d8df8aae /elf | |
parent | 309becf120640bb0fdd1a16e65996c23d0542590 (diff) | |
download | glibc-176790a7341221ae1681ca3aa44ba1e928f789e3.tar glibc-176790a7341221ae1681ca3aa44ba1e928f789e3.tar.gz glibc-176790a7341221ae1681ca3aa44ba1e928f789e3.tar.bz2 glibc-176790a7341221ae1681ca3aa44ba1e928f789e3.zip |
Add a missing #include to dl-sym.c.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-sym.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-sym.c b/elf/dl-sym.c index 1e7ad22583..6480f2359c 100644 --- a/elf/dl-sym.c +++ b/elf/dl-sym.c @@ -1,5 +1,5 @@ /* Look up a symbol in a shared object loaded by `dlopen'. - Copyright (C) 1999-2002,2004,2006,2007,2009 Free Software Foundation, Inc. + Copyright (C) 1999-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,7 @@ #include <assert.h> #include <stddef.h> #include <setjmp.h> +#include <stdlib.h> #include <libintl.h> #include <dlfcn.h> |