emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109684: * unexaix.c, unexcoff.c: Inc


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109684: * unexaix.c, unexcoff.c: Include "mem-limits.h".
Date: Sun, 19 Aug 2012 13:02:24 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109684
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2012-08-19 13:02:24 -0700
message:
  * unexaix.c, unexcoff.c: Include "mem-limits.h".
  
  (start_of_data): Remove decl; mem-limits.h provides it.
modified:
  src/ChangeLog
  src/unexaix.c
  src/unexcoff.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-08-19 19:22:41 +0000
+++ b/src/ChangeLog     2012-08-19 20:02:24 +0000
@@ -1,5 +1,8 @@
 2012-08-19  Paul Eggert  <address@hidden>
 
+       * unexaix.c, unexcoff.c: Include "mem-limits.h".
+       (start_of_data): Remove decl; mem-limits.h provides it.
+
        * xdisp.c (handle_invisible_prop): Make it a bit faster
        and avoid a gcc -Wmaybe-uninitialized diagnostic.
 

=== modified file 'src/unexaix.c'
--- a/src/unexaix.c     2012-05-14 15:11:10 +0000
+++ b/src/unexaix.c     2012-08-19 20:02:24 +0000
@@ -56,8 +56,9 @@
 #include <unistd.h>
 #include <fcntl.h>
 
+#include "mem-limits.h"
+
 char *start_of_text (void);                    /* Start of text */
-extern char *start_of_data (void);             /* Start of initialized data */
 
 extern int _data;
 extern int _text;

=== modified file 'src/unexcoff.c'
--- a/src/unexcoff.c    2012-01-19 07:21:25 +0000
+++ b/src/unexcoff.c    2012-08-19 20:02:24 +0000
@@ -98,7 +98,7 @@
 
 #include <sys/file.h>
 
-extern char *start_of_data (void);             /* Start of initialized data */
+#include "mem-limits.h"
 
 static long block_copy_start;          /* Old executable start point */
 static struct filehdr f_hdr;           /* File header */


reply via email to

[Prev in Thread] Current Thread [Next in Thread]