[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r4259 - in /fsf/trunk/libc: ChangeLog manual/arith.texi sysdeps/mach/hurd/bits/fcntl.h



Author: eglibc
Date: Mon Nov 19 00:03:47 2007
New Revision: 4259

Log:
Import glibc-mainline for 2007-11-19

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/manual/arith.texi
    fsf/trunk/libc/sysdeps/mach/hurd/bits/fcntl.h

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Mon Nov 19 00:03:47 2007
@@ -1,3 +1,10 @@
+2007-11-18  Roland McGrath  <roland@xxxxxxxx>
+
+	* manual/arith.texi (Remainder Functions): Spelling fix.
+	From Shaun Silk <genix@xxxxxxxxxxxxx>.
+
+	* sysdeps/mach/hurd/bits/fcntl.h (O_CLOEXEC): Fix value.
+
 2007-11-17  Ulrich Drepper  <drepper@xxxxxxxxxx>
 
 	* po/zh_CN.po: Update from translation team.

Modified: fsf/trunk/libc/manual/arith.texi
==============================================================================
--- fsf/trunk/libc/manual/arith.texi (original)
+++ fsf/trunk/libc/manual/arith.texi Mon Nov 19 00:03:47 2007
@@ -1520,7 +1520,7 @@
 @comment math.h
 @comment BSD
 @deftypefunx {long double} dreml (long double @var{numerator}, long double @var{denominator})
-These functions are like @code{fmod} except that they rounds the
+These functions are like @code{fmod} except that they round the
 internal quotient @var{n} to the nearest integer instead of towards zero
 to an integer.  For example, @code{drem (6.5, 2.3)} returns @code{-0.4},
 which is @code{6.5} minus @code{6.9}.

Modified: fsf/trunk/libc/sysdeps/mach/hurd/bits/fcntl.h
==============================================================================
--- fsf/trunk/libc/sysdeps/mach/hurd/bits/fcntl.h (original)
+++ fsf/trunk/libc/sysdeps/mach/hurd/bits/fcntl.h Mon Nov 19 00:03:47 2007
@@ -71,7 +71,6 @@
 #define O_SYNC		O_FSYNC
 #ifdef __USE_GNU
 # define O_NOATIME	0x0800	/* Don't set access time on read (owner).  */
-# define O_CLOEXEC	0x00010000 /* Set FD_CLOEXEC.  */
 #endif
 #ifdef	__USE_MISC
 # define O_SHLOCK	0x00020000 /* Open with shared file lock.  */
@@ -118,6 +117,9 @@
    once the file has been opened.  */
 
 #define	O_TRUNC		0x00010000 /* Truncate file to zero length.  */
+#ifdef __USE_GNU
+# define O_CLOEXEC	0x00400000 /* Set FD_CLOEXEC.  */
+#endif
 
 
 /* Controlling terminal flags.  These are understood only by `open',