changeset 15455:19e61f4db1bb

Reorder ChangeLog entries to match the order in which the changes went in at the central repository.
author Bruno Haible <bruno@clisp.org>
date Sun, 24 Jul 2011 19:23:58 +0200
parents 76a0e0f55da2
children f962e8efac85
files ChangeLog
diffstat 1 files changed, 11 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -42,6 +42,17 @@
 	* doc/posix-functions/pthread_mutexattr_setrobust.texi: Likewise.
 	* doc/glibc-functions/execvpe.texi: Likewise.
 
+2011-07-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+	ftell: don't include <unistd.h>
+	* lib/ftell.c: Don't include <unistd.h>.  <stdio.h> is now
+	guaranteed to define off_t, and the ftell module depends on the
+	stdio module.
+
+	ftell: do not assume wraparound signed arithmetic
+	* lib/ftell.c: Include <limits.h>.
+	(ftell): Don't assume wraparound signed arithmetic.
+
 2011-07-24  Bruno Haible  <bruno@clisp.org>
 
 	close: No longer depend on module 'fclose'.
@@ -67,15 +78,6 @@
 
 2011-07-24  Paul Eggert  <eggert@cs.ucla.edu>
 
-	ftell: don't include <unistd.h>
-	* lib/ftell.c: Don't include <unistd.h>.  <stdio.h> is now
-	guaranteed to define off_t, and the ftell module depends on the
-	stdio module.
-
-	ftell: do not assume wraparound signed arithmetic
-	* lib/ftell.c: Include <limits.h>.
-	(ftell): Don't assume wraparound signed arithmetic.
-
 	* README: Modernize discussion of signed integers.
 	Assuming overflow wraparound is no longer safe.
 	Mention ones' complement and signed magnitude.