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
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-08-15 21:07:47 +0400
committerChristopher Faylor <me@cgf.cx>2012-08-15 21:07:47 +0400
commit042759864145e9239b8d6869e549703cadaf0226 (patch)
tree5e25e69dee4002e4a1ca86d531ddfcf708d41553 /winsup
parentd57a4725b1dde16e292ed7a9898752b4e2277766 (diff)
* gendef: Delete unneeded read from <IN> which ate an arbitrary line from
cygwin.din.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rwxr-xr-xwinsup/cygwin/gendef3
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index d93d2ee5a..782e84c02 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2012-08-15 Christopher Faylor <me.cygwin2012@cgf.cx>
+ * gendef: Delete unneeded read from <IN> which ate an arbitrary line
+ from cygwin.din.
+
+2012-08-15 Christopher Faylor <me.cygwin2012@cgf.cx>
+
* exceptions.cc (sigdelayed): Move declaration to sigproc.h.
* sigproc.h (sigdelayed): Make symbol globally available.
* gendef (sigdelayed): Specifically zero incyg and stacklock.
diff --git a/winsup/cygwin/gendef b/winsup/cygwin/gendef
index ddffe5800..64d24913e 100755
--- a/winsup/cygwin/gendef
+++ b/winsup/cygwin/gendef
@@ -1,5 +1,5 @@
#!/usr/bin/perl
-# Copyright 2003, 2004, 2005, 2006, 2008, 2009, 2010 Red Hat, Inc.
+# Copyright 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012 Red Hat, Inc.
#
# This file is part of Cygwin.
#
@@ -28,7 +28,6 @@ while (<IN>) {
push(@top, cleanup $_);
last if /^\s*exports\s*$/i;
}
-my $libline = cleanup scalar(<IN>);
my @in = cleanup <IN>;
close(IN);