diff options
| author | Eli Zaretskii | 2011-04-30 12:31:01 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-04-30 12:31:01 +0300 |
| commit | 330d880c3acc6b9e072b75af68a6332120de4457 (patch) | |
| tree | 41ad1b446ba56b88df1db5224d27f478f768f924 /src | |
| parent | ba366b6db5009dccdedafdff86cffaa3285e1800 (diff) | |
| download | emacs-330d880c3acc6b9e072b75af68a6332120de4457.tar.gz emacs-330d880c3acc6b9e072b75af68a6332120de4457.zip | |
Don't test HAVE_INTTYPES_H in process.c.
src/process.c: Remove HAVE_INTTYPES_H condition from inclusion of
inttypes.h, as a gnulib replacement is used if it not available in
system headers.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7bfb291707b..e2819df6444 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-04-30 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * process.c: Remove HAVE_INTTYPES_H condition from inclusion of | ||
| 4 | inttypes.h, as a gnulib replacement is used if it not available in | ||
| 5 | system headers. | ||
| 6 | |||
| 1 | 2011-04-21 Eli Zaretskii <eliz@gnu.org> | 7 | 2011-04-21 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files. | 9 | Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files. |
diff --git a/src/process.c b/src/process.c index 1544522ff55..53703078307 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -28,9 +28,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 28 | #include <sys/file.h> | 28 | #include <sys/file.h> |
| 29 | #include <sys/stat.h> | 29 | #include <sys/stat.h> |
| 30 | #include <setjmp.h> | 30 | #include <setjmp.h> |
| 31 | #ifdef HAVE_INTTYPES_H | ||
| 32 | #include <inttypes.h> | 31 | #include <inttypes.h> |
| 33 | #endif | ||
| 34 | 32 | ||
| 35 | #include <unistd.h> | 33 | #include <unistd.h> |
| 36 | #include <fcntl.h> | 34 | #include <fcntl.h> |