]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* alloc.c: #include <sys/types.h>.
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 25 Mar 2013 18:13:18 +0000 (18:13 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 25 Mar 2013 18:13:18 +0000 (18:13 +0000)
* mmap.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197057 138bc75d-0d04-0410-961f-82ee72b054a4

libbacktrace/ChangeLog
libbacktrace/alloc.c
libbacktrace/mmap.c

index 07e83864dabdf0ea12f0d5b960e72fe058a6434f..2fd4e8a3e6369757ab5fcc6c0ffcfb21da42e5c0 100644 (file)
@@ -1,3 +1,8 @@
+2013-03-25  Ian Lance Taylor  <iant@google.com>
+
+       * alloc.c: #include <sys/types.h>.
+       * mmap.c: Likewise.
+
 2013-01-31  Ian Lance Taylor  <iant@google.com>
 
        * dwarf.c (read_function_info): Permit fvec parameter to be NULL.
index cb6f07b8ee9cdf5dd2eb76cda7ccf29e6fb0b233..d0796737786185a1484a802e6f9d973f2edcb6b6 100644 (file)
@@ -34,6 +34,7 @@ POSSIBILITY OF SUCH DAMAGE.  */
 
 #include <errno.h>
 #include <stdlib.h>
+#include <sys/types.h>
 
 #include "backtrace.h"
 #include "internal.h"
index 81389df223e6b91d671ffa4c935e401ad3be5d6c..04aae85e586b75ac944dfeb86bee783702b63d1f 100644 (file)
@@ -36,6 +36,7 @@ POSSIBILITY OF SUCH DAMAGE.  */
 #include <string.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <sys/types.h>
 #include <sys/mman.h>
 
 #include "backtrace.h"