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:
authorChristopher Faylor <me@cgf.cx>2000-09-25 20:36:12 +0400
committerChristopher Faylor <me@cgf.cx>2000-09-25 20:36:12 +0400
commitfb5956da13ac60a3408632efd62e685458899924 (patch)
tree99cdd3b9367da6786298104991ee5750fc08b5e1 /winsup/cygwin/spawn.cc
parenteb69b80812d1b8e7d95b9e5abc95a0a839df13ed (diff)
* spawn.cc (av::dup_maybe): Make function void rather than void *.
* environ.cc (environ_init): Remember to reparse CYGWIN if envp is supplied. * heap.cc (_sbrk): Remember frame for signal handling. * syscalls.cc (read_handler): Eliminate. (_read): Move read_handler code here. Reorganize for one path through 'ready_for_read'.
Diffstat (limited to 'winsup/cygwin/spawn.cc')
-rw-r--r--winsup/cygwin/spawn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc
index 3b46f6782..032082cf3 100644
--- a/winsup/cygwin/spawn.cc
+++ b/winsup/cygwin/spawn.cc
@@ -273,7 +273,7 @@ public:
calloced = 1;
}
}
- void *dup_maybe (int i)
+ void dup_maybe (int i)
{
if (i >= calloced)
argv[i] = cstrdup (argv[i]);