Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgor Duda <deo@logos-m.ru>2001-04-24 19:25:31 +0400
committerEgor Duda <deo@logos-m.ru>2001-04-24 19:25:31 +0400
commit8db71e01698f00c71eed124b1609f019776900a1 (patch)
tree3614b12bd953007317cacf6e89eecccc24497c4a /winsup/cygwin/tty.cc
parent19a90cfeaf3f3ed0de79f061a76cd5cabfd0f021 (diff)
* dlmalloc.c: New file. Port of Doug Lea's malloc
* dlmalloc.h: Ditto. * Makefile.in: Add support for MALLOC_DEBUG * config.h.in: Ditto. * winsup.h: Ditto. * configure.in: Add --enable-malloc-debugging option. * configure: Regenerate. * debug.h: Include declarations for debugging malloc. * tty.cc (grantpt): Fix definition. (unlockpt): Ditto.
Diffstat (limited to 'winsup/cygwin/tty.cc')
-rw-r--r--winsup/cygwin/tty.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/tty.cc b/winsup/cygwin/tty.cc
index dbadb68f8..768c21cd2 100644
--- a/winsup/cygwin/tty.cc
+++ b/winsup/cygwin/tty.cc
@@ -29,14 +29,14 @@ extern fhandler_tty_master *tty_master;
extern "C"
int
-grantpt (void)
+grantpt (int fd)
{
return 0;
}
extern "C"
int
-unlockpt (void)
+unlockpt (int fd)
{
return 0;
}