diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-19 13:02:24 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-19 13:02:24 -0700 |
commit | 22d7feb28c95cec0c940fc7b933491550730512b (patch) | |
tree | ff38893d862e205e530bcd7446649fb7f2db759e /src/unexaix.c | |
parent | 32bd425074e32184d3d4d9f985fd1a60814d78b2 (diff) | |
download | emacs-22d7feb28c95cec0c940fc7b933491550730512b.tar.gz |
* unexaix.c, unexcoff.c: Include "mem-limits.h".
(start_of_data): Remove decl; mem-limits.h provides it.
Diffstat (limited to 'src/unexaix.c')
-rw-r--r-- | src/unexaix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unexaix.c b/src/unexaix.c index 29fa0fd6287..c09156296f7 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -56,8 +56,9 @@ what you give them. Help stamp out software-hoarding! */ #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; |