]> sourceware.org Git - newlib-cygwin.git/commitdiff
* dcrt0.cc: Fix copyright dates.
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 22 Feb 2011 09:17:57 +0000 (09:17 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 22 Feb 2011 09:17:57 +0000 (09:17 +0000)
* winsup.h: Ditto.
* syscalls.cc (_read): Move EXPORT_ALIAS to its rightful place.

winsup/cygwin/ChangeLog
winsup/cygwin/dcrt0.cc
winsup/cygwin/syscalls.cc
winsup/cygwin/winsup.h

index 1e5bf05ba0d2d43846b1545a44e3b3d9aeb62c6a..6b2de4099e6b476db2deae92863d6c150dc264cb 100644 (file)
@@ -1,3 +1,9 @@
+2011-02-22  Corinna Vinschen  <corinna@vinschen.de>
+
+       * dcrt0.cc: Fix copyright dates.
+       * winsup.h: Ditto.
+       * syscalls.cc (_read): Move EXPORT_ALIAS to its rightful place.
+
 2011-02-21  Christopher Faylor  <me+cygwin@cgf.cx>
 
        * cygwin.din: Mark __assert* and _abort as NOSIGFE.
index af0cf4e144b64169a71c83dcfe731913a82436a5..c6131e809eee1929cb37ddf3a9ec9bff6b774528 100644 (file)
@@ -1,8 +1,7 @@
 /* dcrt0.cc -- essentially the main() for the Cygwin dll
 
    Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-   2007, 2008, 2009, 2010
-   Red Hat, Inc.
+   2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
 
 This file is part of Cygwin.
 
index 7ebe98dd17050aed9578a431482f89f1d8e4ca73..e3a8f2df3d5d9cad5fc50c300f780f447d20132a 100644 (file)
@@ -907,6 +907,8 @@ read (int fd, void *ptr, size_t len)
   return readv (fd, &iov, 1);
 }
 
+EXPORT_ALIAS (read, _read)
+
 extern "C" ssize_t
 pread (int fd, void *ptr, size_t len, _off64_t off)
 {
@@ -937,8 +939,6 @@ pwrite (int fd, void *ptr, size_t len, _off64_t off)
   return res;
 }
 
-EXPORT_ALIAS (read, _read)
-
 extern "C" ssize_t
 write (int fd, const void *ptr, size_t len)
 {
@@ -3501,6 +3501,7 @@ utmpname (const char *file)
   utmp_file = strdup (file);
   debug_printf ("New UTMP file: %s", utmp_file);
 }
+
 EXPORT_ALIAS (utmpname, utmpxname)
 
 /* Note: do not make NO_COPY */
index 5d07afdb4a433e4721f4a45ced694bbf19128e1c..8489678660818cdd621aa64a74d1aec348495e0b 100644 (file)
@@ -1,7 +1,7 @@
 /* winsup.h: main Cygwin header file.
 
    Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006, 2007, 2008, 2009 Red Hat, Inc.
+   2005, 2006, 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
 
 This file is part of Cygwin.
 
This page took 0.041437 seconds and 5 git commands to generate.