This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.17-580-ga6a242f


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  a6a242fe7cc0d7fcac1c9741d8be2ca8c2a5c744 (commit)
      from  f2da7793096c58b30ca57380da4c1343cabc4044 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a6a242fe7cc0d7fcac1c9741d8be2ca8c2a5c744

commit a6a242fe7cc0d7fcac1c9741d8be2ca8c2a5c744
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Apr 29 14:30:37 2013 -0700

    Make stub fchdir.c define __fchdir.

diff --git a/ChangeLog b/ChangeLog
index 207fe4f..a56bf73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-29  Roland McGrath  <roland@hack.frob.com>
+
+	* io/fchdir.c (__fchdir): Renamed from fchdir.
+	(fchdir): Define as weak alias.
+
 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/libm-test.inc (ERRNO_UNCHANGED): New macro.
diff --git a/io/fchdir.c b/io/fchdir.c
index c79b4f2..843f101 100644
--- a/io/fchdir.c
+++ b/io/fchdir.c
@@ -21,11 +21,11 @@
 
 /* Change the current directory to FD.  */
 int
-fchdir (fd)
-     int fd;
+__fchdir (int fd)
 {
   __set_errno (ENOSYS);
   return -1;
 }
+weak_alias (__fchdir, fchdir)
 
 stub_warning (fchdir)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog   |    5 +++++
 io/fchdir.c |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]