aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-08-04 00:48:26 +0000
committerChristopher Faylor <me@cgf.cx>2000-08-04 00:48:26 +0000
commit7511cbf69d650d2dc0a35ed0d9a5868f27a72d14 (patch)
tree42ed44f611746ac2f5f557cd63ad7cc67733c8a2
parent4b2bbf9af59469a37365f673b667293b3c28e1c4 (diff)
downloadnewlib-unlabeled-1.22.2.zip
newlib-unlabeled-1.22.2.tar.gz
newlib-unlabeled-1.22.2.tar.bz2
* select.cc (fhandler_console::select_read): Call set_cursor_maybe since selectgithub/unlabeled-1.22.2unlabeled-1.22.2
may block and cursor may not be visible. * select.cc (fhandler_console::select_write): Ditto. * select.cc (fhandler_console::select_except): Ditto. * environ.cc (cur_environ): Give "C" linkage. * winsup.h: Ditto. * winsup.cc: Change include ordering.
-rw-r--r--winsup/cygwin/winsup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h
index 1146785..c84e725 100644
--- a/winsup/cygwin/winsup.h
+++ b/winsup/cygwin/winsup.h
@@ -500,7 +500,7 @@ win_env * __stdcall getwinenv (const char *name, const char *posix = NULL);
void __stdcall update_envptrs ();
char * __stdcall winenv (const char * const *, int);
extern char **__cygwin_environ, ***main_environ;
-extern char __stdcall **cur_environ ();
+extern "C" char __stdcall **cur_environ ();
#define environ (cur_environ ())
/* The title on program start. */