[binutils-gdb] libctf: add some missing #includes.

Nick Alcock nix@sourceware.org
Fri Jun 26 15:00:04 GMT 2020


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c1401ecc29a92428a5d52a23802e20e8c2829b03

commit c1401ecc29a92428a5d52a23802e20e8c2829b03
Author: Nick Alcock <nick.alcock@oracle.com>
Date:   Mon Dec 16 11:38:57 2019 +0000

    libctf: add some missing #includes.
    
    Causes warnings on (at least) recent FreeBSD.
    
    libctf/
            * ctf-create.c: Include <unistd.h>.
            * ctf-open-bfd.c: Likewise.

Diff:
---
 libctf/ChangeLog      | 5 +++++
 libctf/ctf-create.c   | 1 +
 libctf/ctf-open-bfd.c | 1 +
 3 files changed, 7 insertions(+)

diff --git a/libctf/ChangeLog b/libctf/ChangeLog
index 743237e3d34..a631d55464b 100644
--- a/libctf/ChangeLog
+++ b/libctf/ChangeLog
@@ -1,3 +1,8 @@
+2020-06-26  Nick Alcock  <nick.alcock@oracle.com>
+
+	* ctf-create.c: Include <unistd.h>.
+	* ctf-open-bfd.c: Likewise.
+
 2020-06-26  Nick Alcock  <nick.alcock@oracle.com>
 
 	PR libctf/25120
diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c
index a01250bc4d4..808da372de8 100644
--- a/libctf/ctf-create.c
+++ b/libctf/ctf-create.c
@@ -21,6 +21,7 @@
 #include <sys/param.h>
 #include <assert.h>
 #include <string.h>
+#include <unistd.h>
 #include <zlib.h>
 
 #ifndef roundup
diff --git a/libctf/ctf-open-bfd.c b/libctf/ctf-open-bfd.c
index 630a158af86..dafa265f9d8 100644
--- a/libctf/ctf-open-bfd.c
+++ b/libctf/ctf-open-bfd.c
@@ -25,6 +25,7 @@
 #include <errno.h>
 #include <string.h>
 #include <fcntl.h>
+#include <unistd.h>
 #include <elf.h>
 #include <bfd.h>
 #include "swap.h"


More information about the Gdb-cvs mailing list