Reorder ChangeLog entries to match the order in which the changes went
authorBruno Haible <bruno@clisp.org>
Sun, 24 Jul 2011 17:23:58 +0000 (19:23 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 24 Jul 2011 17:23:58 +0000 (19:23 +0200)
in at the central repository.

ChangeLog

index 9c125dc..4aaa4e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * 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'.
 
 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.