mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Add a missing #include to dl-sym.c.
This commit is contained in:
parent
309becf120
commit
176790a734
@ -1,5 +1,7 @@
|
||||
2012-08-15 Roland McGrath <roland@hack.frob.com>
|
||||
|
||||
* elf/dl-sym.c: Include <stdlib.h>.
|
||||
|
||||
* posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
|
||||
constants, which avoids warnings in 32-bit builds.
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user