diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-29 13:16:55 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-29 13:16:55 +0000 |
commit | 1852c1a4d9758d3dc7e90e692c891ee62013a47a (patch) | |
tree | 11a5be817c6fe01676442d5c61b6b0e65deb627f /libiberty | |
parent | 554660f9394aeb787c52966e0c33dea966999783 (diff) | |
download | gcc-1852c1a4d9758d3dc7e90e692c891ee62013a47a.tar.gz |
2010-11-29 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 167237
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@167239 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/setproctitle.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 37d97868c6c..bbd5aafb8c3 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2010-11-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * setproctitle.c [HAVE_SYS_PRCTL_H]: Include <sys/types.h>. + 2010-11-20 Anthony Green <green@moxielogic.com> * configure.ac: Turn PR_SET_NAME link test into a test for diff --git a/libiberty/setproctitle.c b/libiberty/setproctitle.c index ceb0a3894cc..a22fb1f1b56 100644 --- a/libiberty/setproctitle.c +++ b/libiberty/setproctitle.c @@ -21,6 +21,7 @@ Boston, MA 02110-1301, USA. */ #include "config.h" #endif #ifdef HAVE_SYS_PRCTL_H +#include <sys/types.h> #include <sys/prctl.h> #endif #include "ansidecl.h" |