This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] prevent warnings while vompiling clib/syscalls


At this moment we get warnings while we compile the libc/syscalls folder.
This patch will prevent this

Jaap de Wolff
=======================PATCH===============================
diff --git a/newlib/libc/syscalls/sysisatty.c
b/newlib/libc/syscalls/sysisatty.c
index 697c54bc4..f4e8789ce 100644
--- a/newlib/libc/syscalls/sysisatty.c
+++ b/newlib/libc/syscalls/sysisatty.c
@@ -3,6 +3,11 @@
 #include <reent.h>
 #include <unistd.h>
 
+
+/* forward declaration */
+extern int _isatty_r(struct _reent *, int);
+extern int _isatty(int);
+
 int
 isatty (int fd)
 {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]