aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-08-15 17:07:47 +0000
committerChristopher Faylor <me@cgf.cx>2012-08-15 17:07:47 +0000
commit042759864145e9239b8d6869e549703cadaf0226 (patch)
tree5e25e69dee4002e4a1ca86d531ddfcf708d41553 /winsup/cygwin
parentd57a4725b1dde16e292ed7a9898752b4e2277766 (diff)
downloadnewlib-042759864145e9239b8d6869e549703cadaf0226.zip
newlib-042759864145e9239b8d6869e549703cadaf0226.tar.gz
newlib-042759864145e9239b8d6869e549703cadaf0226.tar.bz2
* gendef: Delete unneeded read from <IN> which ate an arbitrary line from
cygwin.din.
Diffstat (limited to 'winsup/cygwin')
-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 d93d2ee..782e84c 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 ddffe58..64d2491 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);