diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-09-09 00:11:39 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-09-09 00:11:39 +0000 |
commit | 33c5ddcd3efd965bd9ef6b7287f8d0706bb15a3b (patch) | |
tree | ee8e93ae75fc7610b15e7223df1fa7001d656673 /libiberty | |
parent | 9831d6406274d4bfbdf0106976718ac08b472dd9 (diff) | |
download | gcc-33c5ddcd3efd965bd9ef6b7287f8d0706bb15a3b.zip gcc-33c5ddcd3efd965bd9ef6b7287f8d0706bb15a3b.tar.gz gcc-33c5ddcd3efd965bd9ef6b7287f8d0706bb15a3b.tar.bz2 |
* xmemdup.c: Include sys/types.h.
From-SVN: r29218
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/xmemdup.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 77f42ef..de9309c 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 8 20:03:28 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * xmemdup.c: Include sys/types.h. + 1999-09-07 Jeff Garzik <jgarzik@pobox.com> * xmemdup.c: New xmemdup function. diff --git a/libiberty/xmemdup.c b/libiberty/xmemdup.c index 8e82469..f780041 100644 --- a/libiberty/xmemdup.c +++ b/libiberty/xmemdup.c @@ -8,6 +8,8 @@ #include "ansidecl.h" #include "libiberty.h" +#include <sys/types.h> /* For size_t. */ + PTR xmemdup (input, copy_size, alloc_size) const PTR input; |