public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim/mcore/interp.c: Include "unistd.h" standard C header file to avoid compiling warnings.
@ 2015-02-07 14:12 Chen Gang S
  2015-02-07 23:22 ` Doug Evans
  0 siblings, 1 reply; 9+ messages in thread
From: Chen Gang S @ 2015-02-07 14:12 UTC (permalink / raw)
  To: gdb-patches

The related warnings:

  gcc -DHAVE_CONFIG_H     -DPROFILE=1 -DWITH_PROFILE=-1          -DDEFAULT_INLINE=0              -I. -I../../../binutils-gdb/sim/mcore -I../common -I../../../binutils-gdb/sim/mcore/../common -I../../include -I../../../binutils-gdb/sim/mcore/../../include -I../../bfd -I../../../binutils-gdb/sim/mcore/../../bfd -I../../opcodes -I../../../binutils-gdb/sim/mcore/../../opcodes  -g -O2 -c -o interp.o -MT interp.o -MMD -MP -MF .deps/interp.Tpo ../../../binutils-gdb/sim/mcore/interp.c
../../../binutils-gdb/sim/mcore/interp.c: In function ‘handle_trap1’:
../../../binutils-gdb/sim/mcore/interp.c:559:22: warning: implicit declaration of function ‘link’ [-Wimplicit-function-declaration]
         cpu.gr[RET1] = link ((char *) a[0], (char *) a[1]);
                        ^
  ../../../binutils-gdb/sim/mcore/interp.c:585:22: warning: implicit declaration of function ‘access’ [-Wimplicit-function-declaration]
         cpu.gr[RET1] = access ((char *) a[0], a[1]);
                        ^

2015-02-07  Chen Gang <gang.chen.5i5j@gmail.com>

	* mcore/interp.c: Include "unistd.h" standard C header file to
	avoid compiling warnings.
---
 sim/ChangeLog      | 5 +++++
 sim/mcore/interp.c | 1 +
 2 files changed, 6 insertions(+)

diff --git a/sim/ChangeLog b/sim/ChangeLog
index a891ce5..8a05ff7 100644
--- a/sim/ChangeLog
+++ b/sim/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-07  Chen Gang <gang.chen.5i5j@gmail.com>
+
+	* mcore/interp.c: Include "unistd.h" standard C header file to
+	avoid compiling warnings.
+
 2015-02-02  Chen Gang <gang.chen.5i5j@gmail.com>
 
 	* microblaze/interp.c (sim_do_command): Call freeargv() before
diff --git a/sim/mcore/interp.c b/sim/mcore/interp.c
index dfaa6aa..7e2be0d 100644
--- a/sim/mcore/interp.c
+++ b/sim/mcore/interp.c
@@ -23,6 +23,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <sys/times.h>
 #include <sys/param.h>
 #include <netinet/in.h>	/* for byte ordering macros */
+#include <unistd.h>
 #include "bfd.h"
 #include "gdb/callback.h"
 #include "libiberty.h"
-- 
1.9.3

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-02-09 10:48 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-07 14:12 [PATCH] sim/mcore/interp.c: Include "unistd.h" standard C header file to avoid compiling warnings Chen Gang S
2015-02-07 23:22 ` Doug Evans
2015-02-07 23:54   ` Chen Gang S
2015-02-08  0:35     ` Doug Evans
2015-02-08  1:32       ` Chen Gang S
2015-02-08 16:00         ` Joel Brobecker
2015-02-09  1:48           ` Chen Gang S
2015-02-09  2:28             ` Joel Brobecker
2015-02-09 10:48               ` Chen Gang S

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).